9 Commits

Author SHA1 Message Date
5bac950139 Merge version_3 into main
Merge version_3 into main
2026-03-04 06:42:34 +00:00
a91f490795 Update src/app/page.tsx 2026-03-04 06:42:30 +00:00
2e7addcbf9 Update src/app/layout.tsx 2026-03-04 06:42:29 +00:00
e08a320826 Merge version_2 into main
Merge version_2 into main
2026-03-04 06:40:01 +00:00
f7193306d0 Update src/app/page.tsx 2026-03-04 06:39:56 +00:00
d1b41c8111 Update src/app/layout.tsx 2026-03-04 06:39:56 +00:00
d114ecee93 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:32:13 +00:00
c1f1586c35 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:31:12 +00:00
c0571e3a58 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:29:49 +00:00
2 changed files with 20 additions and 50 deletions

View File

@@ -1,60 +1,18 @@
import type { Metadata } from "next"; 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 "./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 = { 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"), title: "Ga Nhỏ Camping", description: "Trải nghiệm nướng ngoài trời giữa lòng Vinh"
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
}
}; };
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="vi">
<ServiceWrapper> <body>{children}
<body
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1422,7 +1380,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -10,6 +10,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterSimple from "@/components/sections/footer/FooterSimple"; import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Wind, Cloud, Users, Flame, Utensils, DollarSign } from "lucide-react"; import { Wind, Cloud, Users, Flame, Utensils, DollarSign } from "lucide-react";
import Image from "next/image";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -42,6 +43,18 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<div className="flex flex-col items-center justify-center pt-12 pb-8 px-4">
<div className="w-40 h-40 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={160}
height={160}
className="rounded-full object-cover w-full h-full shadow-lg"
priority
/>
</div>
</div>
<HeroCentered <HeroCentered
title="Trải nghiệm nướng ngoài trời giữa lòng Vinh" 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" description="Không gian chill Đồ ăn đậm vị Phù hợp tụ họp bạn bè & gia đình"
@@ -290,4 +303,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }