3 Commits

Author SHA1 Message Date
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 8 additions and 45 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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"), title: "Ultimate Habit Tracker Dashboard", description: "Master your routine, transform your life with our premium habit tracking system"};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -190,6 +190,8 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
animationType="slide-up" animationType="slide-up"
cardClassName="data-[most-popular=true]:scale-105 data-[most-popular=true]:shadow-2xl"
gridClassName="gap-8"
plans={[ plans={[
{ {
id: "starter", badge: "Popular", badgeIcon: Star, id: "starter", badge: "Popular", badgeIcon: Star,