Update src/app/layout.tsx

This commit is contained in:
2026-03-03 18:41:26 +00:00
parent 596386fb17
commit 3c290c2b98

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Raleway } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Kappa Sigma | University of Missouri-Rolla", description: "Discover Kappa Sigma at Missouri S&T. Building brotherhood, developing leaders, and fostering community service. Join our 150+ members and lifelong network.", keywords: "Kappa Sigma, fraternity, Rolla, Missouri S&T, brotherhood, college, recruitment", robots: {
index: true,
follow: true,
},
openGraph: {
siteName: "Kappa Sigma Rolla", title: "Kappa Sigma at University of Missouri-Rolla", description: "Join a legacy of brotherhood, leadership, and service. Discover Kappa Sigma at Missouri S&T.", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/teenagers-laughing-sharing-jokes_1139-276.jpg", alt: "Kappa Sigma Brotherhood"},
],
},
twitter: {
card: "summary_large_image", title: "Kappa Sigma at Missouri S&T", description: "Building leaders and fostering brotherhood at the University of Missouri-Rolla.", images: ["http://img.b2bpic.net/free-photo/teenagers-laughing-sharing-jokes_1139-276.jpg"],
},
};
title: "Masters Touch Automobile - Auto Repair & Services in Foristell, MO", description: "Professional auto repair and maintenance services in Foristell, Missouri. Expert technicians, quality service, competitive prices."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}