Skip to content

Commit

Permalink
feat: we WORKIN baby
Browse files Browse the repository at this point in the history
  • Loading branch information
zzulanas committed Jun 20, 2023
1 parent bef64bc commit 682c491
Show file tree
Hide file tree
Showing 9 changed files with 324 additions and 294 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Next.js: debug server-side",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev"
},
{
"name": "Next.js: debug client-side",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000"
},
{
"name": "Next.js: debug full stack",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev",
"serverReadyAction": {
"pattern": "started server on .+, url: (https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
}
]
}
12 changes: 3 additions & 9 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,19 @@ import Image from "next/image";
import cx from "classnames";
import { crimsonPro, martelSans, palanquinDark } from "./fonts";
import { motion } from "framer-motion";
import Chatty from "@/components/Chatty";

export default function Home() {
return (
<main>
<motion.div className="flex flex-row justify-around px-24">
<div className="basis-1/3">
<h1 className="text-8xl">Zach Zulanas</h1>
<h2 className="text-3xl">developer</h2>
<h2 className="text-3xl">big nerd</h2>
</div>
<div className="basis-2/3">
<div className="mb-6">
<label className="block mb-2 text-sm font-medium text-gray-900 dark:text-white">
Large input
</label>
<input
type="text"
id="large-input"
className="block w-full p-4 text-gray-900 border border-gray-300 rounded-lg bg-gray-50 sm:text-md focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
></input>
<Chatty />
</div>
</div>
</motion.div>
Expand Down
Loading

0 comments on commit 682c491

Please sign in to comment.