Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 937fbbff60 | |||
| 98eebfdbd6 | |||
| 3890dc8214 | |||
| 9ba106864b | |||
| 90c39f9f4f | |||
| e28925dc72 |
@@ -1,58 +1,21 @@
|
|||||||
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 +1383,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -190,6 +190,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
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={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "starter", badge: "Popular", badgeIcon: Star,
|
id: "starter", badge: "Popular", badgeIcon: Star,
|
||||||
@@ -265,4 +268,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user