All checks were successful
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 39s
CI / test-python-voice (push) Successful in 37s
CI / test-bqas (push) Successful in 37s
Neue statische Website fuer Kinder (6-12 Jahre) mit 8 Holzprojekten, SVG-Illustrationen, Sicherheitshinweisen und kindgerechtem Design. Next.js 15 + Tailwind + Framer Motion. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
653 B
TypeScript
22 lines
653 B
TypeScript
import type { Metadata } from 'next'
|
|
import './globals.css'
|
|
import { Navbar } from '@/components/Navbar'
|
|
import { Footer } from '@/components/Footer'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'LEVIS Holzbau — Kinder-Holzwerkstatt',
|
|
description: 'Lerne Holzfiguren schnitzen und kleine Holzprojekte bauen! Kindgerechte Anleitungen fuer junge Holzwerker.',
|
|
}
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="de">
|
|
<body className="min-h-screen flex flex-col">
|
|
<Navbar />
|
|
<main className="flex-1">{children}</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|