added footer with legal and contact
This commit is contained in:
32
client/src/app/Footer.tsx
Normal file
32
client/src/app/Footer.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
"use client";
|
||||
|
||||
import { Divider } from "@nextui-org/divider";
|
||||
import { Link } from "@nextui-org/link";
|
||||
import { usePathname } from "next/navigation";
|
||||
import React from "react";
|
||||
|
||||
export default function Footer({
|
||||
sites,
|
||||
}: {
|
||||
sites: { href: string; text: string }[];
|
||||
}) {
|
||||
const pathname = usePathname();
|
||||
|
||||
return (
|
||||
<>
|
||||
{sites.map((footer, ii, footerSites) => (
|
||||
<React.Fragment key={ii}>
|
||||
<Link
|
||||
href={footer.href}
|
||||
color={pathname === footer.href ? "danger" : "foreground"}
|
||||
>
|
||||
{footer.text}
|
||||
</Link>
|
||||
{ii != footerSites.length - 1 ? (
|
||||
<Divider orientation="vertical" />
|
||||
) : null}
|
||||
</React.Fragment>
|
||||
))}
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
export default function ManageEvents() {}
|
||||
9
client/src/app/datenschutz/page.tsx
Normal file
9
client/src/app/datenschutz/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
export default function Datenschutz() {
|
||||
return (
|
||||
<div>
|
||||
<h2 className="text-center font-headline text-4xl text-highlight">
|
||||
Datenschutz
|
||||
</h2>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
10
client/src/app/impressum/page.tsx
Normal file
10
client/src/app/impressum/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
export default function Impressum() {
|
||||
return (
|
||||
<div>
|
||||
{" "}
|
||||
<h2 className="text-center font-headline text-4xl text-highlight">
|
||||
Impressum
|
||||
</h2>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
import type { Metadata } from "next";
|
||||
import "./globals.css";
|
||||
import { NextUIProvider } from "@nextui-org/system";
|
||||
import React from "react";
|
||||
import Footer from "./Footer";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
@@ -12,6 +14,17 @@ export default function RootLayout({
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
const footerSites = [
|
||||
{
|
||||
text: "Impressum",
|
||||
href: "/impressum",
|
||||
},
|
||||
{
|
||||
text: "Datenschutz",
|
||||
href: "/datenschutz",
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<html>
|
||||
<body className="bg-background text-foreground antialiased">
|
||||
@@ -23,6 +36,9 @@ export default function RootLayout({
|
||||
</h1>
|
||||
</header>
|
||||
<main className="flex min-h-full flex-1 flex-col">{children}</main>
|
||||
<footer className="flex h-4 justify-center gap-4">
|
||||
<Footer sites={footerSites} />
|
||||
</footer>
|
||||
</div>
|
||||
</NextUIProvider>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user