diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ce9bfe..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Abraham Enriquez for Congress | Texas District 19", description: "Vote Abraham Enriquez for Congress in Texas District 19. Republican candidate with Trump administration experience committed to secure borders and economic growth.", keywords: "Abraham Enriquez, Congress, Texas District 19, Republican, Trump, election, Lubbock", metadataBase: new URL("https://enriquez2024.com"), - alternates: { - canonical: "https://enriquez2024.com"}, - openGraph: { - title: "Abraham Enriquez for Congress", description: "Fighting for Texas with proven leadership and conservative values.", url: "https://enriquez2024.com", siteName: "Enriquez for Congress", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-positive-mature-business-leader-enjoying-coffee_74855-3525.jpg", alt: "Abraham Enriquez Campaign"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Abraham Enriquez for Congress", description: "Proven leadership for Texas District 19", images: ["http://img.b2bpic.net/free-photo/happy-positive-mature-business-leader-enjoying-coffee_74855-3525.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -