9 Commits

Author SHA1 Message Date
68f4173921 Merge version_3 into main
Merge version_3 into main
2026-03-07 04:28:05 +00:00
2f8f62bd53 Update src/app/page.tsx 2026-03-07 04:28:00 +00:00
542208d82f Update src/app/layout.tsx 2026-03-07 04:28:00 +00:00
4041d62fe8 Merge version_2 into main
Merge version_2 into main
2026-03-07 04:23:01 +00:00
7658536f70 Update src/app/page.tsx 2026-03-07 04:22:56 +00:00
6723583167 Update src/app/layout.tsx 2026-03-07 04:22:56 +00:00
02859e27ac Merge version_1 into main
Merge version_1 into main
2026-03-07 03:08:46 +00:00
770e4d3d5e Merge version_1 into main
Merge version_1 into main
2026-03-07 03:07:55 +00:00
a76a3b3164 Merge version_1 into main
Merge version_1 into main
2026-03-07 03:06:34 +00:00
2 changed files with 17 additions and 45 deletions

View File

@@ -1,49 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "O-Levels Study Materials | $10 Complete Notes & Lectures", description: "Affordable O-levels study materials with comprehensive notes and video lectures. All subjects at $10. Instant access, lifetime support. Pass your exams with confidence.", keywords: "O-levels notes, O-levels study materials, exam preparation, video lectures, study guides, affordable education", openGraph: {
title: "Master O-Levels With Complete Study Resources - NoteVault", description: "Complete O-levels study packages including detailed notes and professional video lectures. Just $10 per subject.", type: "website", siteName: "NoteVault"},
twitter: {
card: "summary_large_image", title: "O-Levels Study Materials | NoteVault", description: "Affordable comprehensive study materials for O-levels with video lectures"},
robots: {
index: true,
follow: true,
},
title: 'NoteVault - O-Levels Study Materials',
description: 'Comprehensive O-Levels study materials including notes and recorded lectures for all subjects at $10 per subject.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -67,9 +67,9 @@ export default function LandingPage() {
<div id="products" data-section="products">
<ProductCardTwo
title="All Subjects Available"
description="Access complete study materials for every O-levels subject. Each package includes detailed notes and recorded lectures."
tag="$10 Flat Rate"
title="All Subjects Available Save 17% with 3-Subject Bundle"
description="Access complete study materials for every O-levels subject. Each package includes detailed notes and recorded lectures. Bundle 3 subjects for just $25 (regular: $30) and save 17% on comprehensive exam preparation."
tag="$10 Each or 3 for $25"
tagIcon={Star}
tagAnimation="slide-up"
textboxLayout="default"
@@ -120,9 +120,9 @@ export default function LandingPage() {
]
},
{
id: "bundle", title: "Multiple Subjects Bundle", price: "$25", period: "3 subjects", imageSrc: "http://img.b2bpic.net/free-photo/freelancer-working-remotely-discussing-with-partners-online-using-laptop-sitting-kitchen-night-using-modern-technology-network-wireless-talking-virtual-meeting-midnight-doing-overtime_482257-14596.jpg?_wi=2", imageAlt: "Bundle of multiple subjects", button: { text: "Get Bundle", href: "#products" },
id: "bundle", title: "3 Subjects Bundle - SAVE $5", price: "$25", period: "normally $30", imageSrc: "http://img.b2bpic.net/free-photo/freelancer-working-remotely-discussing-with-partners-online-using-laptop-sitting-kitchen-night-using-modern-technology-network-wireless-talking-virtual-meeting-midnight-doing-overtime_482257-14596.jpg?_wi=2", imageAlt: "Bundle of multiple subjects", button: { text: "Get Bundle", href: "#products" },
features: [
"3 complete subject packages", "All recorded lectures included", "Priority support access", "Lifetime access guarantee", "Study guides included"
"3 complete subject packages", "All recorded lectures included", "Priority support access", "Lifetime access guarantee", "Study guides included", "Save $5 compared to individual purchases"
]
}
]}
@@ -300,4 +300,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}