This commit is contained in:
2026-01-29 23:41:54 +01:00
parent 98d3ee2198
commit f506f2d7a3
5 changed files with 9 additions and 594 deletions

View File

@@ -1,11 +1,10 @@
import type { Metadata } from 'next';
import { Inter, Newsreader } from 'next/font/google';
import './globals.css';
import { Analytics } from '../src/components/Analytics';
import { Footer } from '../src/components/Footer';
import { Header } from '../src/components/Header';
import { CTA } from '../src/components/CTA';
import { InteractiveElements } from '../src/components/InteractiveElements';
import { Analytics } from '../src/components/Analytics';
import './globals.css';
const inter = Inter({ subsets: ['latin'], variable: '--font-inter' });
const newsreader = Newsreader({
@@ -40,7 +39,6 @@ export default function RootLayout({
<main>
{children}
</main>
<CTA />
<Footer />
<InteractiveElements />
<Analytics />