Landing & contact page done, services & prices missing

This commit is contained in:
ASOwnerYT
2024-12-04 17:56:32 +13:00
parent 022f5123cf
commit a7552a9323
16 changed files with 450 additions and 62 deletions
+5
View File
@@ -1,6 +1,9 @@
import localFont from "next/font/local";
import "./globals.css";
import Navbar from "./components/Navbar"
import Footer from "./components/Footer"
import Script from 'next/script'
import ChatwootWidget from "./components/ChatwootWidget"
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
@@ -22,8 +25,10 @@ export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
<ChatwootWidget />
<Navbar />
{children}
<Footer />
</body>
</html>
);