4 Commits

Author SHA1 Message Date
1e8fbefd49 Merge version_3 into main
Merge version_3 into main
2026-03-07 19:03:41 +00:00
c11c336881 Update src/app/page.tsx 2026-03-07 19:03:37 +00:00
c45efff550 Update src/app/layout.tsx 2026-03-07 19:03:37 +00:00
fbe7160dde Merge version_2 into main
Merge version_2 into main
2026-03-07 19:02:54 +00:00
2 changed files with 16 additions and 8 deletions

View File

@@ -1,11 +1,17 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "GermanFlow - Learn German Online", description: "Master German at your own pace with structured courses from A1 to B1 levels and exam preparation."};
title: "GermanFlow - Learn German Online", description: "Master German at your own pace with our structured courses from A1 to B1 levels and exam preparation."};
export default function RootLayout({
children,
@@ -14,7 +20,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -135,7 +135,7 @@ export default function HomePage() {
<div id="pricing" data-section="pricing">
<PricingCardOne
title="Simple, Affordable Pricing"
description="All courses are €30 each. Enroll today and get a free bonus vocabulary pack worth €10 to accelerate your learning journey!"
description="All courses are €30 each. Enroll in the level you need and start learning immediately."
tag="Pricing"
tagIcon={Euro}
tagAnimation="slide-up"
@@ -260,9 +260,9 @@ export default function HomePage() {
description="Choose your course level and start learning German at your own pace. All courses are just €30 and include lifetime access to all materials and resources."
buttons={[
{
text: "Enroll Now", href: "#pricing"},
text: "Start Free Trial", href: "#pricing"},
{
text: "Contact Support", href: "mailto:support@germanflow.com"},
text: "Enroll Now", href: "#contact"},
]}
buttonAnimation="slide-up"
background={{