Initial commit

This commit is contained in:
Francesco
2025-05-14 14:35:15 +02:00
commit c482b6b254
130 changed files with 13171 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import type { Metadata } from "next"
import Privacy from '@/markdown/gymbro/privacy/en.mdx'
import RootLayout from "@/app/layout"
export const metadata: Metadata = {
title: "Gym Bro - Informativa sulla Privacy | TECHTONIC FAULT",
}
export default function BlogPage() {
return (
<Privacy />
)
}

View File

@@ -0,0 +1,13 @@
import type { Metadata } from "next"
import Privacy from '@/markdown/gymbro/privacy/it.mdx'
import RootLayout from "@/app/layout"
export const metadata: Metadata = {
title: "Gym Bro - Informativa sulla Privacy | TECHTONIC FAULT",
}
export default function BlogPage() {
return (
<Privacy />
)
}

14
app/pages/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { Navbar } from "@/components/navbar";
import { Footer } from "@/components/footer";
export default function MdxLayout({ children }: { children: React.ReactNode }) {
// Create any shared layout or styles here
return (<div className="flex min-h-screen flex-col">
<Navbar />
<main className="flex-1 py-8">
<div className="container"><div className="prose dark:prose-invert">{children}</div></div>
</main>
<Footer />
</div>);
}