Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 04:23:01 +00:00
2 changed files with 14 additions and 42 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

@@ -68,8 +68,8 @@ 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"
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"
]
}
]}