Merge version_3 into main #7
@@ -1,11 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "@/styles/globals.css";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Tiletopia - Cape Town's Premium Tile & Fireplace Showroom", description: "Find the perfect tiles and fireplaces at Tiletopia. Premium selection, expert consultants, same-day delivery in Cape Town."};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -48,7 +48,7 @@ export default function LandingPage() {
|
||||
tagAnimation="none"
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:0218534066" },
|
||||
{ text: "Visit Showroom", href: "https://maps.google.com/?q=Gerber+Blvd,+Gants+Plaza,+Cape+Town,+7140" }
|
||||
{ text: "Get Directions", href: "https://maps.google.com/?q=Gerber+Blvd,+Gants+Plaza,+Cape+Town,+7140" }
|
||||
]}
|
||||
buttonAnimation="none"
|
||||
leftCarouselItems={[
|
||||
@@ -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" }}
|
||||
|
||||
Reference in New Issue
Block a user