Merge version_2 into main #5
@@ -1,54 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } 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 raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FinAssist - Student Financial Assistant | AI-Powered Money Management", description: "Master your student finances with FinAssist. Track expenses, get AI insights, and achieve your financial goals. Free for Taylor's University students.", keywords: "student finance, expense tracker, budget planner, financial assistant, AI money management, college budgeting", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "FinAssist - Take Control of Your Student Finances", description: "Track expenses, predict costs, and receive personalized financial advice designed for students. Start managing your money smarter today.", type: "website", siteName: "FinAssist", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASzLx3IDVSIDGm8joccpM7kz5m/a-modern-financial-dashboard-interface-s-1772601000174-ae35c49f.png", alt: "FinAssist Financial Dashboard"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "FinAssist - Student Financial Assistant", description: "AI-powered expense tracking and budget planning for college students", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASzLx3IDVSIDGm8joccpM7kz5m/a-modern-financial-dashboard-interface-s-1772601000174-ae35c49f.png"],
|
||||
},
|
||||
};
|
||||
title: "FinAssist - Master Your Student Finances with AI", description: "AI-powered financial management for students. Track expenses, get personalized insights, and build healthy financial habits."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -159,7 +159,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "1", price: "Free", name: "Starter", buttons: [
|
||||
{ text: "Get Started", href: "#contact" },
|
||||
{ text: "Learn More", href: "#" },
|
||||
{ text: "Compare Plans", href: "#pricing" },
|
||||
],
|
||||
features: [
|
||||
"Expense tracking", "Basic categories", "Monthly reports", "Community support"],
|
||||
@@ -168,7 +168,7 @@ export default function LandingPage() {
|
||||
id: "2", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$4.99/mo", name: "Pro Student", buttons: [
|
||||
{ text: "Start Free Trial", href: "#contact" },
|
||||
{ text: "Contact Sales", href: "#" },
|
||||
{ text: "See Pro Features", href: "#pricing" },
|
||||
],
|
||||
features: [
|
||||
"Everything in Starter", "AI-powered insights", "Budget forecasting", "Financial health score", "Priority support", "Advanced analytics"],
|
||||
@@ -176,7 +176,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "3", price: "Custom", name: "Institutional", buttons: [
|
||||
{ text: "Contact Us", href: "#contact" },
|
||||
{ text: "Schedule Demo", href: "#" },
|
||||
{ text: "Compare Plans", href: "#pricing" },
|
||||
],
|
||||
features: [
|
||||
"All Pro features", "Campus-wide deployment", "Custom integrations", "Dedicated support", "Advanced reporting", "API access"],
|
||||
|
||||
Reference in New Issue
Block a user