33 lines
959 B
TypeScript
33 lines
959 B
TypeScript
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
import { Inter } from "next/font/google"
|
|
import "./globals.css"
|
|
import Navbar from "@/components/navbar"
|
|
import Footer from "@/components/footer"
|
|
|
|
const inter = Inter({ subsets: ["latin"] })
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Ebb n Flow Therapeutics - Massage, Laser & Movement Therapy",
|
|
description:
|
|
"Experience holistic healing through our integrated therapeutic services. Massage therapy, laser therapy, and movement therapy in a peaceful, professional setting.",
|
|
keywords: "massage therapy, laser therapy, movement therapy, wellness, healing, therapeutic massage, pain relief",
|
|
generator: 'v0.app'
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>
|
|
<Navbar />
|
|
<main>{children}</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|