3 Commits

Author SHA1 Message Date
4a07a4655d Update src/app/page.tsx 2026-04-03 17:52:32 +00:00
9bf0ff0630 Update src/app/page.tsx 2026-04-03 17:52:00 +00:00
b65ea935a3 Merge version_1 into main
Merge version_1 into main
2026-04-03 17:50:11 +00:00

View File

@@ -9,6 +9,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -31,6 +32,7 @@ export default function LandingPage() {
{ name: "Home", id: "#hero" }, { name: "Home", id: "#hero" },
{ name: "Features", id: "#features" }, { name: "Features", id: "#features" },
{ name: "Predictor", id: "#predictor" }, { name: "Predictor", id: "#predictor" },
{ name: "Recommendations", id: "#recommendations" },
{ name: "FAQ", id: "#faq" }, { name: "FAQ", id: "#faq" },
]} ]}
brandName="OdishaAdmission" brandName="OdishaAdmission"
@@ -100,6 +102,20 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="recommendations" data-section="recommendations">
<MetricCardTen
title="Personalized Recommendations"
description="Based on your academic profile and merit, here are the most suitable streams and institutes for you."
metrics={[
{ id: "r1", title: "BTech - Computer Science", subtitle: "Recommended based on your 90% score", category: "Stream", value: "High Probability" },
{ id: "r2", title: "Diploma - Mechanical", subtitle: "Good alternative pathway", category: "Stream", value: "Very Likely" },
{ id: "r3", title: "HSS - Science", subtitle: "Primary choice for higher studies", category: "Stream", value: "Guaranteed" }
]}
animationType="slide-up"
textboxLayout="default"
/>
</div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqDouble <FaqDouble
textboxLayout="default" textboxLayout="default"