diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c8be994..2205389 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,51 +1,20 @@
import type { Metadata } from "next";
-import { Lato } 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 lato = Lato({
- variable: "--font-lato", subsets: ["latin"],
- weight: ["100", "300", "400", "700", "900"],
-});
-
-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: "Expo Digital - Custom Website Design & Development", description: "Beautiful, personalized websites for businesses. 2 years of web design expertise. Let us create your perfect online presence.", keywords: "web design, website development, custom websites, digital agency, web designer", metadataBase: new URL("https://expodigital.com"),
- openGraph: {
- title: "Expo Digital - Custom Website Design", description: "We create beautiful, personalized websites that showcase your brand and drive results.", type: "website", siteName: "Expo Digital"},
- twitter: {
- card: "summary_large_image", title: "Expo Digital - Custom Website Design", description: "Beautiful websites crafted for your business"},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Expo Digital - Web Design & Development", description: "Create personalized websites that showcase your brand's unique story."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-