Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 812ca9ef84 | |||
| 605f8bdf62 | |||
| 43c9bc334a | |||
| 13e2614fdb | |||
| fbe218e325 | |||
| 3124ddf4bf | |||
| 21bec54d83 | |||
| d43a1af899 | |||
| fa437999a3 | |||
| 4a97a8eaf9 | |||
| 43bee4235f | |||
| e14e26ec5b | |||
| 70055d040a | |||
| 53692691ca | |||
| 4c56d54f72 | |||
| 3ed757eeb7 | |||
| 6ecb80f5f1 | |||
| a91830f1d8 | |||
| 86f3a04a34 | |||
| 4493b29637 | |||
| 7b760bc1de | |||
| dc074890c8 | |||
| 84791df8f1 | |||
| e08c865688 | |||
| 6ddaa22e34 |
@@ -1,24 +1,16 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Taishan Construction | Premium Hardscape & Building Services Toronto", description: "Premium interlock driveways, patios, landscaping & construction services across the GTA. Free 3D design, expert installation, luxury results."
|
||||
};
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
@@ -26,7 +18,10 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<head>
|
||||
<link rel="icon" href="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXh5KliD4l7rWjrQZkOq7ZuPnH/uploaded-1772755165036-dookr298.png" />
|
||||
</head>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
|
||||
@@ -12,6 +12,7 @@ import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import { Building2, Eye, CheckCircle2, Palette, Users, MessageCircle, Sparkles, ArrowRightLeft, Cog, Footprints, Home, Zap, Shield, Hammer, Trees, Droplet, Frame, Lightbulb, Crown, Phone } from 'lucide-react';
|
||||
import React, { useState } from 'react';
|
||||
import Link from 'next/link';
|
||||
|
||||
interface BeforeAfterImagePair {
|
||||
beforeSrc: string;
|
||||
|
||||
Reference in New Issue
Block a user