From d86a1e43ef44565561e9c0559f818c58ddd66b8e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 21:16:37 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index cb7a43a..e336580 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -132,7 +132,7 @@ export default function AboutPage() { author: "Mid-Career", description: "Served as Secretary of Economic Development, overseeing $2 billion in investments and creating over 50,000 jobs.", tags: ["Economics", "Development"], - imageSrc: "http://img.b2bpic.net/free-photo/top-view-assortment-finance-word-sticky-notes_23-2148793747.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-assortment-finance-word-sticky-notes_23-2148793747.jpg?_wi=2", imageAlt: "Economic Development Leadership", }, { @@ -141,7 +141,7 @@ export default function AboutPage() { author: "Current Service", description: "Elected to the U.S. Senate, serving constituents with distinction on committees addressing healthcare, economic growth, and education.", tags: ["Senate", "Federal"], - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-adults-studying-together_23-2150331646.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-adults-studying-together_23-2150331646.jpg?_wi=2", imageAlt: "U.S. Senate Service", }, ]} -- 2.49.1 From 3c3cfc15b38a64695d95d707eafb5ff56012a0d7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 21:16:38 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 58 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..f5d5e94 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Senator Thompson - U.S. Senate", + description: "Official website of U.S. Senator Thompson. Serving constituents with dedication to economic opportunity, healthcare, and education.", + keywords: "senator, government, constituent services, legislation, federal benefits, public service", + metadataBase: new URL("https://senator-thompson.gov"), + alternates: { + canonical: "https://senator-thompson.gov", + }, + openGraph: { + title: "Senator Thompson - U.S. Senate Official Website", + description: "Serving constituents with dedication to economic opportunity, healthcare, and education.", + url: "https://senator-thompson.gov", + siteName: "Senator Thompson", + type: "website", + images: [ + { + url: "https://senator-thompson.gov/og-image.jpg", + alt: "Senator Thompson Official Portrait", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Senator Thompson - U.S. Senate", + description: "Serving constituents with dedication to economic opportunity, healthcare, and education.", + images: ["https://senator-thompson.gov/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}