diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 665c5ed..198f540 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,51 +1,26 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Source_Sans_3 } 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"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
-const sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "KegDigital | Web Design Agency", description: "Stunning web design and development services that drive conversions. We build beautiful, high-performing websites for growing businesses.", keywords: "web design, web development, digital design, branding, e-commerce, SaaS design", openGraph: {
- title: "KegDigital | Web Design Agency", description: "Transform your digital presence with strategic web design and development.", siteName: "KegDigital", type: "website"
- },
- twitter: {
- card: "summary_large_image", title: "KegDigital | Web Design Agency", description: "Stunning web design and development services that drive conversions."
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "KegDigital - Web Design & Development", description: "We craft stunning, high-performing websites that turn visitors into clients."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-