Merge version_2 into main #2
@@ -1,58 +1,20 @@
|
||||
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 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -190,6 +190,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
cardClassName="data-[most-popular=true]:scale-105 data-[most-popular=true]:shadow-2xl"
|
||||
gridClassName="gap-8"
|
||||
plans={[
|
||||
{
|
||||
id: "starter", badge: "Popular", badgeIcon: Star,
|
||||
|
||||
Reference in New Issue
Block a user