6 Commits

Author SHA1 Message Date
fc3da7d426 Merge version_4 into main
Merge version_4 into main
2026-05-15 13:01:36 +00:00
e3e5388441 Update src/app/page.tsx 2026-05-15 13:01:30 +00:00
0bde072bbe Merge version_3 into main
Merge version_3 into main
2026-05-15 13:00:21 +00:00
12bacf96c2 Update src/app/page.tsx 2026-05-15 13:00:18 +00:00
e486989611 Merge version_2 into main
Merge version_2 into main
2026-05-15 12:58:46 +00:00
ba3a785782 Merge version_2 into main
Merge version_2 into main
2026-05-15 12:58:17 +00:00

View File

@@ -8,7 +8,7 @@ import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/F
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { AlertTriangle, BarChart2, BookOpen, CheckSquare, Globe, Lightbulb, LineChart, ShieldCheck, Smartphone, Smile, Sparkles, Users } from "lucide-react"; import { AlertTriangle, BarChart2, BookOpen, CheckSquare, Globe, Lightbulb, LineChart, ShieldCheck, Smartphone, Smile, Sparkles, Users } from "lucide-react";
@@ -28,7 +28,7 @@ export default function LandingPage() {
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarStyleApple
navItems={[ navItems={[
{ name: "Home", id: "#hero" }, { name: "Home", id: "#hero" },
{ name: "Mësuesit", id: "#teacher" }, { name: "Mësuesit", id: "#teacher" },
@@ -37,7 +37,6 @@ export default function LandingPage() {
{ name: "Kontakt", id: "#contact" }, { name: "Kontakt", id: "#contact" },
]} ]}
brandName="Shkolla e së Nesërmes" brandName="Shkolla e së Nesërmes"
button={{ text: "Fillo Tani", href: "#contact" }}
/> />
</div> </div>
@@ -139,6 +138,7 @@ export default function LandingPage() {
animationType="depth-3d" animationType="depth-3d"
title="Çfarë thonë përdoruesit" title="Çfarë thonë përdoruesit"
description="Përvoja reale nga komuniteti ynë." description="Përvoja reale nga komuniteti ynë."
buttons={[{ text: "Lexo më shumë", onClick: () => alert("Po shfaqim më shumë dëshmi!") }]}
testimonials={[ testimonials={[
{ {
id: "1", id: "1",
@@ -157,7 +157,7 @@ export default function LandingPage() {
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
text="Gati për të nisur këtë udhëtim?" text="Gati për të nisur këtë udhëtim?"
buttons={[{ text: "Na kontaktoni", href: "#" }]} buttons={[{ text: "Na kontaktoni", onClick: () => alert("Formularin e kontaktit do të hapet këtu.") }]}
/> />
</div> </div>
@@ -165,12 +165,12 @@ export default function LandingPage() {
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="Shkolla e së Nesërmes" logoText="Shkolla e së Nesërmes"
columns={[ columns={[
{ items: [{ label: "Rreth Nesh", href: "#" }, { label: "Privatësia", href: "#" }] }, { items: [{ label: "Rreth Nesh", onClick: () => console.log("Navigating to About") }, { label: "Privatësia", onClick: () => console.log("Navigating to Privacy") }] },
{ items: [{ label: "Ndihmë", href: "#" }, { label: "Blog", href: "#" }] }, { items: [{ label: "Ndihmë", onClick: () => console.log("Navigating to Help") }, { label: "Blog", onClick: () => console.log("Navigating to Blog") }] },
]} ]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }