diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 0183064..888c8fe 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,48 +1,22 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
-import { Inter } from "next/font/google";
+import { DM_Sans } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const dmSans = DM_Sans({
+ variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Urban Retail - Premium Shopping Experience", description: "Discover curated collections and quality merchandise at Urban Retail. Expert customer service, competitive pricing, and community-focused retail.", keywords: "retail store, shopping, boutique, curated products, local retail, quality merchandise", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Urban Retail - Your Favorite Shopping Destination", description: "Shop premium products from trusted brands and local artisans at Urban Retail.", type: "website", siteName: "Urban Retail", images: [
- {
- url: "http://img.b2bpic.net/free-photo/african-american-man-looks-clothes-online-touch-screen-monitor-fashion-boutique-mall-self-service-board-male-customer-looking-trendy-clothes-items-retail-kiosk-display_482257-63314.jpg", alt: "Urban Retail store showcase"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Urban Retail - Shop With Us", description: "Discover curated collections and exceptional service at Urban Retail.", images: ["http://img.b2bpic.net/free-photo/african-american-man-looks-clothes-online-touch-screen-monitor-fashion-boutique-mall-self-service-board-male-customer-looking-trendy-clothes-items-retail-kiosk-display_482257-63314.jpg"],
- },
-};
+ title: "Blanca's - Premium Food & Snacks", description: "Discover Blanca's premium selection of fresh foods and delicious snacks. Quality products delivered to your door."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-