diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 033229f..5569174 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-