Merge version_2 into main #4
@@ -1,53 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import { Outfit } 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 nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
||||
});
|
||||
const outfit = Outfit({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Quest Room Borman - Алматыдағы Хоррор Квест", description: "Алматыдағы ең қорқынышты хоррор escape-квест. Кәсіби актерлер, логикалық тапсырмалар, толық immersive сюжет. Дәл қазір бронда!", keywords: "хоррор квест, escape room, Алматы, қорқыныш, ойын", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Quest Room Borman - Хоррор Квест", description: "Алматыдағы ең жүркемейтін хоррор escape-квест. Маньяктың логовынан құтылыңыз!", url: "https://questroombor man.kz", siteName: "Quest Room Borman", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/vertical-shot-empty-tunnel-towards-buildings_181624-9779.jpg", alt: "Quest Room Borman"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Quest Room Borman - Хоррор Квест", description: "Алматыдағы ең жүркемейтін квест"},
|
||||
};
|
||||
title: "Quest Room Borman", description: "Алматыдағы ең қорқынышты хоррор-квест"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={outfit.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ export default function QuestRoomPage() {
|
||||
{ name: "Бағасы", id: "pricing" }
|
||||
]}
|
||||
button={{
|
||||
text: "Қорқынышты бронда", href: "contact"
|
||||
text: "Қазір 60 минутты бронда", href: "contact"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
@@ -50,7 +50,7 @@ export default function QuestRoomPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[
|
||||
{ text: "Қорқынышты бронда", href: "contact" },
|
||||
{ text: "Қазір 60 минутты бронда", href: "contact" },
|
||||
{ text: "Толғанауға келіңіз", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user