From 80cf2b3d8ff418c3497cbdd6f8d2fcb061a1fbb9 Mon Sep 17 00:00:00 2001 From: AJ Caldwell Date: Sun, 14 Jul 2024 19:57:20 -0700 Subject: [PATCH] Draw the outer owl --- .gitignore | 3 + app/about/page.tsx | 3 + app/globals.css | 4 + app/join/page.tsx | 3 + app/layout.tsx | 7 +- app/lib/components/Footer.tsx | 65 + app/lib/components/Header.tsx | 71 + app/lib/components/index.ts | 2 + app/page.tsx | 18 +- app/talk/page.tsx | 3 + next.config.mjs => next.config.js | 0 package-lock.json | 9553 +++++++++++++++-------------- package.json | 4 + postcss.config.js | 3 + public/images/crowd.jpg | Bin 0 -> 807201 bytes public/images/devx-hero.jpg | Bin 0 -> 128175 bytes public/images/logo.jpeg | Bin 0 -> 14466 bytes tailwind.config.js | 4 + 18 files changed, 5290 insertions(+), 4453 deletions(-) create mode 100644 app/about/page.tsx create mode 100644 app/join/page.tsx create mode 100644 app/lib/components/Footer.tsx create mode 100644 app/lib/components/Header.tsx create mode 100644 app/lib/components/index.ts create mode 100644 app/talk/page.tsx rename next.config.mjs => next.config.js (100%) create mode 100644 postcss.config.js create mode 100644 public/images/crowd.jpg create mode 100644 public/images/devx-hero.jpg create mode 100644 public/images/logo.jpeg create mode 100644 tailwind.config.js diff --git a/.gitignore b/.gitignore index fd3dbb5..19329db 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,6 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts + +# nova +.nova \ No newline at end of file diff --git a/app/about/page.tsx b/app/about/page.tsx new file mode 100644 index 0000000..2a158cc --- /dev/null +++ b/app/about/page.tsx @@ -0,0 +1,3 @@ +export default function About() { + return
/about
+} diff --git a/app/globals.css b/app/globals.css index cd048d8..a1830ef 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,3 +1,7 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + @media (prefers-color-scheme: dark) { html { color-scheme: dark; diff --git a/app/join/page.tsx b/app/join/page.tsx new file mode 100644 index 0000000..6bebe1f --- /dev/null +++ b/app/join/page.tsx @@ -0,0 +1,3 @@ +export default function Join() { + return
/join
+} diff --git a/app/layout.tsx b/app/layout.tsx index 7bb069a..1042bf5 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,6 @@ import { ReactNode } from "react" import type { Metadata } from "next" +import { Header, Footer } from "@/app/lib/components" import "./globals.css" export const metadata: Metadata = { @@ -14,7 +15,11 @@ export default function RootLayout({ }>) { return ( - {children} + +
+ {children} +