diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 43f0dd9..7b761fe 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Mulish } 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"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const mulish = Mulish({
- variable: "--font-mulish", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Dream Park Tashkent | Family Amusement Park & Attractions", description: "Dream Park is the perfect family amusement park in Tashkent with rides, playgrounds, green spaces, and attractions for all ages. Book group visits and birthday parties!", keywords: "Dream Park Tashkent, amusement park Tashkent, family park, kids attractions, Tashkent entertainment, playground, rides", metadataBase: new URL("https://dreampark.uz"),
- alternates: {
- canonical: "https://dreampark.uz"
- },
- openGraph: {
- title: "Dream Park Tashkent | Family Amusement Park", description: "Experience the perfect family fun at Dream Park. Rides, playgrounds, beautiful green spaces, and amazing attractions.", url: "https://dreampark.uz", siteName: "Dream Park", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/daughters-swings-with-parents_1398-5067.jpg", alt: "Happy family at Dream Park Tashkent"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Dream Park Tashkent - Family Entertainment", description: "Book your family visit to Dream Park! Attractions, rides, and fun for all ages in Tashkent.", images: ["http://img.b2bpic.net/free-photo/daughters-swings-with-parents_1398-5067.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Dream Park | Family Fun Entertainment Tashkent", description: "Experience unforgettable family entertainment at Dream Park in Tashkent. Thrilling rides, playgrounds, green spaces, and attractions for all ages."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-