Create pages

This commit is contained in:
Timothy Pidashev
2024-03-18 19:14:57 -07:00
parent 385b237906
commit 7b0d09f2c9
7 changed files with 57 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
// Imports
// Metadata
// Exports
export default function Blog() {
return (
<div>
</div>
);
}

View File

@@ -5,10 +5,10 @@ import Header from "@/components/header";
import Footer from "@/components/footer"; import Footer from "@/components/footer";
// Metadata // Metadata
export const metadata = { //export const metadata = {
title: "Timothy Pidashev", // title: "Timothy Pidashev",
description: "Engineering the Future!" // description: "Engineering the Future!"
}; //};
// Exports // Exports
export default function Layout({children}) { export default function Layout({children}) {

View File

@@ -4,8 +4,12 @@ import Link from "next/link";
const Not_found = () => { const Not_found = () => {
return ( return (
<div className="fixed top-0 left-0 right-0 bottom-0 flex flex-col items-center justify-center"> <div className="fixed top-0 left-0 right-0 bottom-0 flex flex-col items-center justify-center">
<h1 className="font-bold text-light-red-1 dark:text-dark-red-1">Whoops, the requested page could not be found...</h1> <h1 className="font-bold text-light-red-1 dark:text-dark-red-1">
<Link href="/" className="text-light-blue-1 dark:text-blue-1 hover:underline">Go back to Home</Link> Whoops, the requested page could not be found...
</h1>
<Link href="/" className="text-light-blue-1 dark:text-blue-1 hover:underline">
Go back to Home
</Link>
</div> </div>
) )
} }

View File

@@ -0,0 +1,11 @@
// Imports
// Metadata
// Exports
export default function Projects() {
return (
<div>
</div>
);
}

View File

@@ -0,0 +1,11 @@
// Imports
// Metadata
// Exports
export default function Resume() {
return (
<div>
</div>
);
}

View File

@@ -0,0 +1,11 @@
// Imports
// Medatada
// Exports
export default function Shop() {
return (
<div>
</div>
);
}

View File

@@ -2,6 +2,9 @@
import ThemeToggle from "@/components/theme-toggle" import ThemeToggle from "@/components/theme-toggle"
import Link from "next/link"; import Link from "next/link";
import { motion } from "framer-motion";
import { useState } from "react";
const Header = () => { const Header = () => {