diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4c0b1df..1249f16 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,63 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Caveat } from "next/font/google"; -import { Helvetica_Neue } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const caveat = Caveat({ - variable: "--font-caveat", subsets: ["latin"], -}); - -const helveticaNeue = Helvetica_Neue({ - variable: "--font-helvetica-neue", subsets: ["latin"], - weight: ["400", "700"], +const geist_mono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Lumitris – Full-Service Content Agency | Your Content. Fully Handled.", description: "Lumitris is a full-service content agency handling strategy, production, and optimization. Build your content team today.", keywords: "content agency, content creation, brand strategy, social media, video production, copywriting", metadataBase: new URL("https://lumitris.io"), - alternates: { - canonical: "https://lumitris.io"}, - openGraph: { - title: "Lumitris – Content Agency", description: "Your content. Fully handled. Discover how we transform brands through strategic content.", url: "https://lumitris.io", siteName: "Lumitris", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/group-businesspeople-hand-white-desk_23-2147826538.jpg", alt: "Lumitris content agency hero"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Lumitris – Content Agency", description: "Your content. Fully handled.", images: ["http://img.b2bpic.net/free-photo/group-businesspeople-hand-white-desk_23-2147826538.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Lumitris - Your Content. Fully Handled.", description: "Content creation and management services for brands"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +