9 Commits

Author SHA1 Message Date
1e95be0fec Update src/app/page.tsx 2026-03-04 10:41:37 +00:00
145e84ec52 Update src/app/page.tsx 2026-03-04 10:39:59 +00:00
692f710d15 Update src/app/layout.tsx 2026-03-04 10:39:58 +00:00
297d33d1c7 Merge version_2 into main
Merge version_2 into main
2026-03-04 10:02:43 +00:00
149358570e Update src/app/page.tsx 2026-03-04 10:02:39 +00:00
b39ebdd36c Merge version_2 into main
Merge version_2 into main
2026-03-04 10:01:15 +00:00
7de6be5ebc Update src/app/page.tsx 2026-03-04 10:01:11 +00:00
ba4eb27449 Update src/app/layout.tsx 2026-03-04 10:01:10 +00:00
b09f5f80db Merge version_1 into main
Merge version_1 into main
2026-03-04 07:08:11 +00:00

View File

@@ -1,60 +1,22 @@
import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Puul AI - AI Widget for Dental Practices", description: "Automate patient lead engagement with Puul AI's intelligent widget. 24/7 instant responses on your website and social media. Boost appointment bookings.", keywords: "AI chatbot dental, lead generation dental, appointment booking automation, dental widget, practice management AI", metadataBase: new URL("https://puulai.com"),
alternates: {
canonical: "https://puulai.com"
},
openGraph: {
title: "Puul AI - Transform Your Dental Practice with AI", description: "Convert more leads with Puul AI's intelligent widget. 24/7 patient engagement, instant responses, smart lead routing.", url: "https://puulai.com", siteName: "Puul AI", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQIfAPgnVe6STU0xWKR6lfBPoV/a-clean-minimalist-ai-dashboard-interfac-1772607959906-5af1096e.png", alt: "Puul AI Dashboard"
}
]
},
twitter: {
card: "summary_large_image", title: "Puul AI - AI for Dental Practices", description: "24/7 automated patient engagement. Boost leads. Close more appointments.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQIfAPgnVe6STU0xWKR6lfBPoV/a-clean-minimalist-ai-dashboard-interfac-1772607959906-5af1096e.png"]
},
robots: {
index: true,
follow: true
}
};
title: "Puul AI - Dental Practice Lead Engagement", description: "AI-powered lead engagement for dental practices. Automate patient questions, convert more leads, and boost appointment bookings."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}