10 Commits

Author SHA1 Message Date
4e95e8277b Update src/app/page.tsx 2026-03-06 09:45:39 +00:00
70fed20d87 Update src/app/layout.tsx 2026-03-06 09:45:39 +00:00
2828eb1e13 Merge version_2 into main
Merge version_2 into main
2026-03-06 09:43:23 +00:00
1610d5e5c0 Update src/app/page.tsx 2026-03-06 09:43:19 +00:00
a4a8a811c9 Update src/app/layout.tsx 2026-03-06 09:43:18 +00:00
1e73f1a777 Merge version_1 into main
Merge version_1 into main
2026-03-06 09:41:39 +00:00
bd9b3158a2 Merge version_1 into main
Merge version_1 into main
2026-03-06 09:40:54 +00:00
88c4e9ef24 Merge version_1 into main
Merge version_1 into main
2026-03-06 09:39:31 +00:00
24ff20076d Merge version_1 into main
Merge version_1 into main
2026-03-06 09:38:08 +00:00
ee7d3908ca Merge version_1 into main
Merge version_1 into main
2026-03-06 09:36:51 +00:00
2 changed files with 14 additions and 46 deletions

View File

@@ -1,59 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Tiletopia Tile & Fireplace Showroom Cape Town", description: "Cape Town's trusted tile and fireplace showroom. Wide selection of premium tiles, fireplaces, and accessories with expert consultation and same-day delivery. Visit Gants Plaza showroom today.", keywords: "tiles Cape Town, fireplace Cape Town, tile showroom, interior tiles, home renovation, ceramic tiles, porcelain tiles", metadataBase: new URL("https://tiletopia.co.za"),
alternates: {
canonical: "https://tiletopia.co.za"
},
openGraph: {
title: "Tiletopia Find Your Perfect Tile", description: "Premier tile and fireplace showroom in Cape Town with 4.7★ rating. Expert advice, premium selection, same-day delivery.", url: "https://tiletopia.co.za", siteName: "Tiletopia", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/center-cooktop-blue-modules-stone-backdrop_169016-69293.jpg", alt: "Tiletopia premium tiles"
}
]
},
twitter: {
card: "summary_large_image", title: "Tiletopia Find Your Perfect Tile", description: "Cape Town's trusted tile and fireplace showroom with premium selection and expert service.", images: ["http://img.b2bpic.net/free-photo/center-cooktop-blue-modules-stone-backdrop_169016-69293.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -203,8 +203,8 @@ export default function LandingPage() {
title="Ready to Transform Your Space?"
description="Contact Tiletopia today to discuss your tile or fireplace project. Our team is here to help you create something beautiful."
buttons={[
{ text: "Call Now: 021 853 4066", href: "tel:0218534066" },
{ text: "Visit Our Showroom", href: "https://maps.google.com/?q=Gerber+Blvd,+Gants+Plaza,+Cape+Town,+7140" }
{ text: "Visit Our Showroom", href: "https://maps.google.com/?q=Gerber+Blvd,+Gants+Plaza,+Cape+Town,+7140" },
{ text: "Call Now: 021 853 4066", href: "tel:0218534066" }
]}
buttonAnimation="none"
background={{ variant: "plain" }}