Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2f8f62bd53 | |||
| 542208d82f | |||
| 4041d62fe8 | |||
| 7658536f70 | |||
| 6723583167 | |||
| 02859e27ac | |||
| 770e4d3d5e | |||
| a76a3b3164 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user