diff --git a/app/about/page.tsx b/app/about/page.tsx new file mode 100644 index 0000000..77b75ef --- /dev/null +++ b/app/about/page.tsx @@ -0,0 +1,41 @@ +'use client' + +import Nav from "../nav"; +import Image from "next/image"; +import {motion} from "framer-motion"; + +export default function Home() { + return ( +
+ +
+ ); +} + +function Contents(){ + return( +
+

aboutme

+ Alex Tong +

aboutme

+

aboutme

+ Alex Tong + Alex Tong +
+ ) +} \ No newline at end of file diff --git a/app/favicon.ico b/app/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/app/favicon.ico and /dev/null differ diff --git a/app/globals.css b/app/globals.css index 875c01e..95f7094 100644 --- a/app/globals.css +++ b/app/globals.css @@ -2,19 +2,19 @@ @tailwind components; @tailwind utilities; -:root { +:root{ --foreground-rgb: 0, 0, 0; --background-start-rgb: 214, 219, 220; --background-end-rgb: 255, 255, 255; } -@media (prefers-color-scheme: dark) { - :root { - --foreground-rgb: 255, 255, 255; - --background-start-rgb: 0, 0, 0; - --background-end-rgb: 0, 0, 0; - } +/* @media (prefers-color-scheme: dark) { +:root { + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 0, 0, 0; + --background-end-rgb: 0, 0, 0; } + } */ body { color: rgb(var(--foreground-rgb)); diff --git a/app/layout.tsx b/app/layout.tsx index 3314e47..cf4fe55 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,13 +1,17 @@ +'use client' + import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; +import Nav from "./nav"; +import { AnimatePresence } from "framer-motion"; +import { Router, Routes, useLocation } from "react-router-dom"; const inter = Inter({ subsets: ["latin"] }); -export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", -}; +// export const metadata: Metadata = { +// title: "Alex's Website" +// }; export default function RootLayout({ children, @@ -16,7 +20,13 @@ export default function RootLayout({ }>) { return ( - {children} + +