Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c11c336881 | |||
| c45efff550 | |||
| fbe7160dde |
@@ -1,11 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "@/styles/globals.css";
|
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 = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={inter.className}>{children}
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ export default function HomePage() {
|
|||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardOne
|
<PricingCardOne
|
||||||
title="Simple, Affordable Pricing"
|
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"
|
tag="Pricing"
|
||||||
tagIcon={Euro}
|
tagIcon={Euro}
|
||||||
tagAnimation="slide-up"
|
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."
|
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={[
|
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"
|
buttonAnimation="slide-up"
|
||||||
background={{
|
background={{
|
||||||
|
|||||||
Reference in New Issue
Block a user