diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c10d9cf..cade082 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Alpha Asset Management | Premium Investment Strategien", - description: "Institutionelle Investmentlösungen in Aktien und Kryptowährungen. Alpha Asset Management kombiniert traditionelle Finanzexpertise mit modernen digitalen Assets.", - keywords: "Investment, Portfolio Management, Aktien, Kryptowährungen, Hedge Fund, Vermögensaufbau", - metadataBase: new URL("https://alpha-assets.de"), - alternates: { - canonical: "https://alpha-assets.de", - }, - openGraph: { - title: "Alpha Asset Management | Premium Investment Strategien", - description: "Strategisches Investieren in Aktien und Kryptowährungen mit institutioneller Expertise.", - url: "https://alpha-assets.de", - siteName: "Alpha Asset Management", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/premium-abstract-golden-lines-dark-background-design_1017-55324.jpg", - alt: "Alpha Asset Management Premium Investment Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Alpha Asset Management | Investmentlösungen", - description: "Professionelle Vermögensaufbau durch strategisches Investieren in Aktien und digitale Assets.", - images: ["http://img.b2bpic.net/free-vector/premium-abstract-golden-lines-dark-background-design_1017-55324.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Alpha Asset Management | Professionelle Investmentlösungen", description: "Alpha Asset Management bietet institutionelle Investmentlösungen für Aktien und Kryptowährungen. Strategisches Vermögensmanagement für anspruchsvolle Investoren."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -