diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b2717f..ef66e7a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Poppins } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Alpha Finance Melbourne - Premium Wealth Management", description: "Advanced financial solutions and wealth management services in Melbourne. Secure portfolio optimization, expert advisors, and 24/7 support.", keywords: "finance, wealth management, investment, portfolio, Melbourne, financial planning, asset management", metadataBase: new URL("https://alphafinancemelbourne.com.au"), - alternates: { - canonical: "https://alphafinancemelbourne.com.au"}, - openGraph: { - title: "Alpha Finance Melbourne", description: "Premium wealth management and financial advisory services in Melbourne.", url: "https://alphafinancemelbourne.com.au", siteName: "Alpha Finance Melbourne", type: "website"}, - twitter: { - card: "summary_large_image", title: "Alpha Finance Melbourne", description: "Premier financial solutions for wealth management in Melbourne."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Alpha Finance - Advanced Financial Solutions for Melbourne", description: "Experience next-generation wealth management with cinematic interactions and intelligent portfolio optimization."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +