Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1e8fbefd49 | |||
| c11c336881 | |||
| c45efff550 | |||
| fbe7160dde |
@@ -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: `
|
||||
|
||||
@@ -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={{
|
||||
|
||||
Reference in New Issue
Block a user