6 Commits

Author SHA1 Message Date
937fbbff60 Update src/app/page.tsx 2026-03-05 03:33:47 +00:00
98eebfdbd6 Update src/app/layout.tsx 2026-03-05 03:33:47 +00:00
3890dc8214 Merge version_2 into main
Merge version_2 into main
2026-03-05 03:27:45 +00:00
9ba106864b Update src/app/page.tsx 2026-03-05 03:27:41 +00:00
90c39f9f4f Update src/app/layout.tsx 2026-03-05 03:27:41 +00:00
e28925dc72 Merge version_1 into main
Merge version_1 into main
2026-03-05 03:24:46 +00:00
2 changed files with 11 additions and 46 deletions

View File

@@ -1,58 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "The Ultimate Habit Tracker Dashboard | Premium Google Sheets Template", description: "Master your routine with our premium Habit Tracker Dashboard. Track 20+ habits daily, visualize progress with AI-powered insights, and transform your life. Get instant access now.", keywords: "habit tracker, productivity template, google sheets, daily planner, habit building, performance tracking, goal management, routine optimization", metadataBase: new URL("https://habittrackerapp.com"),
alternates: {
canonical: "https://habittrackerapp.com"},
openGraph: {
title: "The Ultimate Habit Tracker Dashboard | Transform Your Routine", description: "Premium habit tracking template designed for high achievers. 20+ automated habits, visual progress charts, and weekly insights.", type: "website", siteName: "Habit Tracker Dashboard", url: "https://habittrackerapp.com", images: [
{
url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148371410.jpg", alt: "Habit Tracker Dashboard Interface"},
],
},
twitter: {
card: "summary_large_image", title: "The Ultimate Habit Tracker Dashboard", description: "Master your routine with our premium habit tracking template. 20+ habits, advanced analytics, and AI-powered insights.", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148371410.jpg"],
},
robots: {
index: true,
follow: true,
},
title: "Ultimate Habit Tracker Dashboard", description: "Master your routine, transform your life with our premium habit tracking system"
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -190,6 +190,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
cardClassName="data-[most-popular=true]:scale-110 data-[most-popular=true]:shadow-2xl data-[most-popular=true]:ring-2 data-[most-popular=true]:ring-primary"
priceClassName="data-[most-popular=true]:text-xl"
gridClassName="gap-8"
plans={[
{
id: "starter", badge: "Popular", badgeIcon: Star,
@@ -265,4 +268,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}