Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e5e90e60ff | |||
| 3f22d862bd | |||
| ab27a15f91 | |||
| 3b29addfed | |||
| 0062c89d93 | |||
| 005d306b01 |
@@ -1,59 +1,21 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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."
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1383,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -123,7 +123,7 @@ export default function LandingPage() {
|
|||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardSixteen
|
<TestimonialCardSixteen
|
||||||
title="What Visitors Say"
|
title="What Visitors Say"
|
||||||
description="Real feedback from families who've experienced the magic of Dream Park. Join thousands of satisfied guests."
|
description="Verified reviews from real families and groups. Join thousands of satisfied guests who've experienced the magic of Dream Park."
|
||||||
tag="Customer Reviews"
|
tag="Customer Reviews"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user