Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f7193306d0 | |||
| d1b41c8111 | |||
| d114ecee93 | |||
| c1f1586c35 | |||
| c0571e3a58 |
@@ -1,60 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Ga Nhỏ Camping - Quán nướng ngoài trời Vinh, Nghệ An", description: "Quán nướng chill với không gian rộng ngoài trời, mái che, phòng riêng. Đặt bàn online hoặc gọi ngay. 100K-200K/người. Vinh, Nghệ An.", keywords: "quán nướng Vinh, quán camping Vinh, nướng ngoài trời Nghệ An, đặt bàn quán nướng", metadataBase: new URL("https://ganhocamping.com"),
|
||||
alternates: {
|
||||
canonical: "https://ganhocamping.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Ga Nhỏ Camping - Quán nướng ngoài trời Vinh", description: "Không gian chill, đồ ăn đậm vị, phù hợp tụ họp bạn bè & gia đình", url: "https://ganhocamping.com", siteName: "Ga Nhỏ Camping", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/night-campfire-night_1182-1135.jpg", alt: "Ga Nhỏ Camping outdoor BBQ space"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Ga Nhỏ Camping - Quán nướng ngoài trời Vinh", description: "Trải nghiệm nướng ngoài trời giữa lòng Vinh", images: ["http://img.b2bpic.net/free-photo/night-campfire-night_1182-1135.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Ga Nhỏ Camping", description: "Trải nghiệm nướng ngoài trời giữa lòng Vinh"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="vi">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1422,7 +1379,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Wind, Cloud, Users, Flame, Utensils, DollarSign } from "lucide-react";
|
||||
import Image from "next/image";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -42,6 +43,18 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<div className="flex flex-col items-center justify-center pt-12 pb-8 px-4">
|
||||
<div className="w-24 h-24 mb-8 relative">
|
||||
<Image
|
||||
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT9Q6LqcufSmXp34aU42Uuz3p6/uploaded-1772606347766-79tnch81.jpg"
|
||||
alt="Ga Nhỏ Camping Logo"
|
||||
width={96}
|
||||
height={96}
|
||||
className="rounded-full object-cover w-full h-full"
|
||||
priority
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<HeroCentered
|
||||
title="Trải nghiệm nướng ngoài trời giữa lòng Vinh"
|
||||
description="Không gian chill – Đồ ăn đậm vị – Phù hợp tụ họp bạn bè & gia đình"
|
||||
|
||||
Reference in New Issue
Block a user