5 Commits

Author SHA1 Message Date
92a019e47a Update src/app/page.tsx 2026-03-06 17:28:22 +00:00
9a4675f05d Update src/app/layout.tsx 2026-03-06 17:28:22 +00:00
41060f5fc4 Merge version_1 into main
Merge version_1 into main
2026-03-06 17:25:44 +00:00
a5721df252 Merge version_1 into main
Merge version_1 into main
2026-03-06 17:24:44 +00:00
6954cb17a7 Merge version_1 into main
Merge version_1 into main
2026-03-06 17:23:05 +00:00
2 changed files with 8 additions and 39 deletions

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Sửa Chữa Điện Thoại Quận 12 - Tiệm Anh Khải", description: "Sửa chữa điện thoại uy tín tại Quận 12. Thay màn hình, pin, ép kính, sửa lỗi phần mềm. Giá minh bạch, bảo hành rõ ràng. Liên hệ ngay: +84-xxx-xxx-xxx", keywords: "sửa điện thoại Quận 12, thay màn hình điện thoại, thay pin điện thoại, sửa chữa điện thoại gần đây, tiệm sửa điện thoại uy tín, sửa điện thoại nhanh", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Sửa Chữa Điện Thoại Uy Tín Tại Quận 12 - Tiệm Anh Khải", description: "Dịch vụ sửa chữa điện thoại chuyên nghiệp, nhanh chóng, giá cả hợp lý tại Quận 12, TPHCM.", siteName: "Tiệm Sửa Chữa Điện Thoại Anh Khải", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/seller-man-mobile-phone-professional-consultant-tech-store-shop_627829-4973.jpg", alt: "Mobile phone repair service"},
],
},
twitter: {
card: "summary_large_image", title: "Sửa Chữa Điện Thoại Uy Tín Tại Quận 12", description: "Dịch vụ sửa chữa điện thoại chuyên nghiệp, nhanh chóng, giá cả hợp lý.", images: [
"http://img.b2bpic.net/free-photo/seller-man-mobile-phone-professional-consultant-tech-store-shop_627829-4973.jpg"],
},
};
title: "Tiệm Sửa Chữa Điện Thoại Anh Khải - Quận 12", description: "Sửa điện thoại uy tín, nhanh chóng tại Quận 12 TPHCM. Chuyên nghiệp, giá minh bạch, bảo hành rõ ràng."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="vi">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -199,7 +199,7 @@ export default function LandingPage() {
description="Mang điện thoại của bạn đến tiệm chúng tôi ngay hôm nay. Chúng tôi sẵn sàng giúp bạn 7 ngày/tuần. Gọi ngay hoặc ghé thăm để được tư vấn miễn phí."
buttons={[
{ text: "Gọi Điện", href: "tel:+84123456789" },
{ text: "Ghé Thăm", href: "#" },
{ text: "Xem Địa Chỉ", href: "https://www.google.com/maps/search/571A+Nguyễn+Ảnh+Thủ+Quận+12+TPHCM" },
]}
background={{ variant: "plain" }}
useInvertedBackground={true}
@@ -215,4 +215,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}