mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
Create pages
This commit is contained in:
11
src/web/src/app/blog/page.jsx
Normal file
11
src/web/src/app/blog/page.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
// Imports
|
||||
|
||||
// Metadata
|
||||
|
||||
// Exports
|
||||
export default function Blog() {
|
||||
return (
|
||||
<div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -5,10 +5,10 @@ import Header from "@/components/header";
|
||||
import Footer from "@/components/footer";
|
||||
|
||||
// Metadata
|
||||
export const metadata = {
|
||||
title: "Timothy Pidashev",
|
||||
description: "Engineering the Future!"
|
||||
};
|
||||
//export const metadata = {
|
||||
// title: "Timothy Pidashev",
|
||||
// description: "Engineering the Future!"
|
||||
//};
|
||||
|
||||
// Exports
|
||||
export default function Layout({children}) {
|
||||
|
||||
@@ -4,8 +4,12 @@ import Link from "next/link";
|
||||
const Not_found = () => {
|
||||
return (
|
||||
<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>
|
||||
<Link href="/" className="text-light-blue-1 dark:text-blue-1 hover:underline">Go back to Home</Link>
|
||||
<h1 className="font-bold text-light-red-1 dark:text-dark-red-1">
|
||||
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>
|
||||
)
|
||||
}
|
||||
|
||||
11
src/web/src/app/projects/page.jsx
Normal file
11
src/web/src/app/projects/page.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
// Imports
|
||||
|
||||
// Metadata
|
||||
|
||||
// Exports
|
||||
export default function Projects() {
|
||||
return (
|
||||
<div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
11
src/web/src/app/resume/page.jsx
Normal file
11
src/web/src/app/resume/page.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
// Imports
|
||||
|
||||
// Metadata
|
||||
|
||||
// Exports
|
||||
export default function Resume() {
|
||||
return (
|
||||
<div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
11
src/web/src/app/shop/page.jsx
Normal file
11
src/web/src/app/shop/page.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
// Imports
|
||||
|
||||
// Medatada
|
||||
|
||||
// Exports
|
||||
export default function Shop() {
|
||||
return (
|
||||
<div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -2,6 +2,9 @@
|
||||
|
||||
import ThemeToggle from "@/components/theme-toggle"
|
||||
import Link from "next/link";
|
||||
import { motion } from "framer-motion";
|
||||
import { useState } from "react";
|
||||
|
||||
|
||||
const Header = () => {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user