diff --git a/app/app/admin/page.tsx b/app/app/admin/page.tsx new file mode 100644 index 0000000..7751790 --- /dev/null +++ b/app/app/admin/page.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +function admin() { + return ( +
admin
+ ) +} + +export default admin \ No newline at end of file diff --git a/app/app/error.tsx b/app/app/error.tsx new file mode 100644 index 0000000..79b969b --- /dev/null +++ b/app/app/error.tsx @@ -0,0 +1,11 @@ +'use client' + +import React from 'react' + +function error({error}: {error: Error}) { + return ( +
error {error.message}
+ ) +} + +export default error \ No newline at end of file diff --git a/app/app/features/page.tsx b/app/app/features/page.tsx new file mode 100644 index 0000000..684a47c --- /dev/null +++ b/app/app/features/page.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +function features() { + return ( +
features
+ ) +} + +export default features \ No newline at end of file diff --git a/app/app/fonts/avantgardelt-extralight.woff b/app/app/fonts/avantgardelt-extralight.woff new file mode 100755 index 0000000..2f25627 Binary files /dev/null and b/app/app/fonts/avantgardelt-extralight.woff differ diff --git a/app/app/fonts/lato-bold.woff b/app/app/fonts/lato-bold.woff new file mode 100755 index 0000000..84c1cf3 Binary files /dev/null and b/app/app/fonts/lato-bold.woff differ diff --git a/app/app/fonts/lato-regular.woff b/app/app/fonts/lato-regular.woff new file mode 100755 index 0000000..f8b6d3e Binary files /dev/null and b/app/app/fonts/lato-regular.woff differ diff --git a/app/app/globals.css b/app/app/globals.css index 13d40b8..ac3a76c 100644 --- a/app/app/globals.css +++ b/app/app/globals.css @@ -24,4 +24,4 @@ body { .text-balance { text-wrap: balance; } -} +} \ No newline at end of file diff --git a/app/app/impressum/page.tsx b/app/app/impressum/page.tsx new file mode 100644 index 0000000..4189ae8 --- /dev/null +++ b/app/app/impressum/page.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +function impressum() { + return ( +
about
+ ) +} + +export default impressum \ No newline at end of file diff --git a/app/app/layout.tsx b/app/app/layout.tsx index a36cde0..202bd06 100644 --- a/app/app/layout.tsx +++ b/app/app/layout.tsx @@ -2,33 +2,43 @@ import type { Metadata } from "next"; import localFont from "next/font/local"; import "./globals.css"; -const geistSans = localFont({ - src: "./fonts/GeistVF.woff", - variable: "--font-geist-sans", +import Navbar from "@/components/Navbar"; +import Footer from "@/components/Footer"; + +const latoregular = localFont({ + src: "./fonts/lato-regular.woff", + variable: "--font-lato", weight: "100 900", -}); -const geistMono = localFont({ - src: "./fonts/GeistMonoVF.woff", - variable: "--font-geist-mono", +}) + +const latobold = localFont({ + src: "./fonts/lato-bold.woff", + variable: "--font-lato-bold", weight: "100 900", -}); +}) export const metadata: Metadata = { - title: "Create Next App", + title: "SJTKD Abteilungen", description: "Generated by create next app", }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - + +
+ +
+
{children} +
+