Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ad9fd556a | |||
| bc83770fc4 | |||
| dd1ba95eec | |||
| 371d193898 | |||
| 7db451ef40 | |||
| aeb718406a | |||
| a7d5416e91 | |||
| a3ce56f657 | |||
| cb2796d59f | |||
| 799c1119c1 | |||
| c81a5c45ab | |||
| c75335fb01 |
154
src/app/page.tsx
154
src/app/page.tsx
@@ -2,17 +2,17 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import { BarChart2, Database, Zap } from "lucide-react";
|
||||
import { BarChart2, Database } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,16 +32,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Projects", id: "projects"},
|
||||
{
|
||||
name: "University", id: "university"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Research", id: "projects" },
|
||||
{ name: "Programs", id: "university" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="GradPath"
|
||||
/>
|
||||
@@ -49,17 +44,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
title="Graduate Journey Towards Academic Excellence"
|
||||
description="Showcasing my research path, academic projects, and future vision for advanced graduate studies at top-tier universities."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Postgraduate Studies Application Portal"
|
||||
description="Tailored portfolio and research roadmap for Computer Science and Artificial Intelligence master's degree applications at global leading universities."
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-backpack-full-stationery-items_23-2148224267.jpg", imageAlt: "Research Excellence" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/cad-program-pc-display-photovoltaics-factory_482257-124932.jpg", imageAlt: "Data Science Projects" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/school-word-color-pencils-black-background_23-2148193369.jpg", imageAlt: "University Campus" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/pile-paperback-books-table_93675-129043.jpg", imageAlt: "Academic Planning" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/coworkers-update-ai-systems_482257-96249.jpg", imageAlt: "Software Laboratory" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/concentrated-young-student-male-blue-t-shirt-sitting-desk-indoors-rewriting-information-from-book-copy-book-attractive-dark-skinned-man-writing-sinopsis-while-sitting-cozy-cafeteria_273609-7518.jpg", imageAlt: "Graduation Success" }
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/cad-program-pc-display-photovoltaics-factory_482257-124932.jpg", imageAlt: "Data Science Projects" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -67,125 +57,101 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Dedicated to Advanced Research & Innovation"
|
||||
title="Academic Vision & Objectives"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="projects" data-section="projects">
|
||||
<FeatureCardTwentyFive
|
||||
<FeatureCardTwelve
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Algorithmic Efficiency", description: "Analyzing large scale data structures for optimized compute performance.", icon: Database,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/male-female-colleagues-standing-by-window-looking-business-graphs-it_1098-20205.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/zoom-out-home-office-with-monitors-stock-market_482257-29630.jpg" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Predictive Modeling", description: "Applying machine learning to derive meaningful insights from raw data.", icon: BarChart2,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/desktop-pc-wooden-desk-showcases-infographics-client-reach-data_482257-126353.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/business-person-futuristic-business-environment_23-2150970195.jpg" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Robotics Integration", description: "Designing autonomous systems for real-world environmental monitoring.", icon: Zap,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/architectural-blueprints_1359-431.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/teens-doing-experiments-robotics-laboratory-boy-vr-headset-girl-protective-glasses_1268-23734.jpg" }
|
||||
]
|
||||
}
|
||||
{ id: "p1", label: "Research Focus", title: "Machine Learning & AI", items: ["Deep Learning Architectures", "Automated Performance Optimization", "Edge Computing Models"] },
|
||||
{ id: "p2", label: "Data Science", title: "Algorithmic Systems", items: ["Large Scale Distributed Systems", "Statistical Inference", "Big Data Analytics"] }
|
||||
]}
|
||||
title="Academic Projects & Research"
|
||||
description="Selected projects spanning data analysis, software engineering, and robotics."
|
||||
title="Key Research Areas"
|
||||
description="Focused academic projects demonstrating technical depth in AI and data-driven systems architecture."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="university" data-section="university">
|
||||
<ProductCardOne
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "u1", name: "Massachusetts Tech", price: "AI & Robotics", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-abbey-chorin-germany-daytime_181624-14039.jpg" },
|
||||
{ id: "u2", name: "Stanford University", price: "Machine Learning", imageSrc: "http://img.b2bpic.net/free-photo/catholic-church-rethymnon-crete_268835-17435.jpg" },
|
||||
{ id: "u3", name: "UC Berkeley", price: "Computer Science", imageSrc: "http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844710.jpg" },
|
||||
{ id: "u4", name: "ETH Zurich", price: "Systems Eng", imageSrc: "http://img.b2bpic.net/free-photo/young-female-student-holding-books-hand-drinking-coffee_23-2148093506.jpg" },
|
||||
{ id: "u5", name: "CMU", price: "Data Engineering", imageSrc: "http://img.b2bpic.net/free-photo/modern-grey-concrete-building_250224-323.jpg" },
|
||||
{ id: "u6", name: "Oxford University", price: "Theoretical CS", imageSrc: "http://img.b2bpic.net/free-photo/closeup-books-wellorganized-shelves-bookstore_181624-59504.jpg" }
|
||||
{ id: "u1", name: "Master in AI", price: "Target: MIT", variant: "Priority: High - Focus: Neural Nets", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-abbey-chorin-germany-daytime_181624-14039.jpg" },
|
||||
{ id: "u2", name: "MS Computer Science", price: "Target: Stanford", variant: "Priority: Medium - Focus: Systems", imageSrc: "http://img.b2bpic.net/free-photo/catholic-church-rethymnon-crete_268835-17435.jpg" },
|
||||
{ id: "u3", name: "MS Data Analytics", price: "Target: UC Berkeley", variant: "Priority: High - Focus: Big Data", imageSrc: "http://img.b2bpic.net/free-photo/people-studying-peacefully-library_23-2148844710.jpg" },
|
||||
{ id: "u4", name: "MS Robotics", price: "Target: CMU", variant: "Priority: Low - Focus: Autonomous Systems", imageSrc: "http://img.b2bpic.net/free-photo/modern-science-laboratory-with-advanced-equipment_23-2148972583.jpg" }
|
||||
]}
|
||||
title="Target University Roadmap"
|
||||
description="Institutions I am actively preparing applications for based on research fit."
|
||||
title="Target Degree Programs"
|
||||
description="Comprehensive list of target universities and their specific graduate program specializations, ranging from AI research to system-level computing."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
<MetricCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", value: "3.9+", description: "GPA" },
|
||||
{ id: "m2", value: "15", description: "Projects" },
|
||||
{ id: "m3", value: "6", description: "Target Unis" }
|
||||
{ id: "m1", value: "3.95/4.0", title: "Cumulative GPA", description: "High Honors distinction", imageSrc: "http://img.b2bpic.net/free-photo/graduation-concept-with-portrait-happy-girl_23-2148201854.jpg?_wi=1" },
|
||||
{ id: "m2", value: "5+ Pubs", title: "Research Contributions", description: "Peer-reviewed journals", imageSrc: "http://img.b2bpic.net/free-photo/handsome-guy-study-library_1157-22204.jpg?_wi=1" }
|
||||
]}
|
||||
title="Academic Achievement Metrics"
|
||||
description="Progress tracking across my application portfolio milestones."
|
||||
title="Academic Milestones"
|
||||
description="Key performance indicators and achievements supporting my postgraduate applications."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
<TestimonialCardTwo
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Prof. Alan Smith", date: "Jan 2024", title: "Dean of Research", quote: "Exceptional insight in complex algorithms.", tag: "CS Dept", avatarSrc: "http://img.b2bpic.net/free-photo/graduation-concept-with-portrait-happy-girl_23-2148201854.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-backpack-full-stationery-items_23-2148224267.jpg", imageAlt: "student professor professional portrait" },
|
||||
{ id: "t2", name: "Dr. Sarah Chen", date: "Feb 2024", title: "Senior Scientist", quote: "Highly diligent research student.", tag: "ML Group", avatarSrc: "http://img.b2bpic.net/free-photo/handsome-guy-study-library_1157-22204.jpg", imageSrc: "http://img.b2bpic.net/free-photo/cad-program-pc-display-photovoltaics-factory_482257-124932.jpg", imageAlt: "student professor professional portrait" },
|
||||
{ id: "t3", name: "Dr. David Kim", date: "Mar 2024", title: "Lab Director", quote: "Innovative, structured, and curious.", tag: "Engineering", avatarSrc: "http://img.b2bpic.net/free-photo/young-student-girl-glasses-with-pigtails-white-shirt-looking-front-smiling-confident-standing-pink-wall_141793-48066.jpg", imageSrc: "http://img.b2bpic.net/free-photo/school-word-color-pencils-black-background_23-2148193369.jpg", imageAlt: "student professor professional portrait" },
|
||||
{ id: "t4", name: "Prof. Elena Rossi", date: "Apr 2024", title: "Academic Advisor", quote: "Top 1% of research potential.", tag: "Physics Dept", avatarSrc: "http://img.b2bpic.net/free-photo/confident-man_1098-16175.jpg", imageSrc: "http://img.b2bpic.net/free-photo/pile-paperback-books-table_93675-129043.jpg", imageAlt: "student professor professional portrait" },
|
||||
{ id: "t5", name: "Dr. Marcus Bell", date: "May 2024", title: "Industry Liaison", quote: "Practical application of theory.", tag: "CS Tech", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-glasses_23-2149434895.jpg", imageSrc: "http://img.b2bpic.net/free-photo/coworkers-update-ai-systems_482257-96249.jpg", imageAlt: "student professor professional portrait" }
|
||||
{ id: "t1", name: "Prof. Alan Smith", role: "Academic Advisor", testimonial: "Demonstrates profound capability in complex problem solving and AI engineering.", imageSrc: "http://img.b2bpic.net/free-photo/graduation-concept-with-portrait-happy-girl_23-2148201854.jpg?_wi=2", icon: Database },
|
||||
{ id: "t2", name: "Dr. Sarah Chen", role: "Director of Research", testimonial: "An exemplary candidate with exceptional potential for advanced research.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-guy-study-library_1157-22204.jpg?_wi=2", icon: BarChart2 }
|
||||
]}
|
||||
title="Academic Recommendations"
|
||||
description="Endorsements from my professors and professional research leads."
|
||||
title="Faculty Recommendations"
|
||||
description="Statements from advisors supporting my research direction."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
<FaqDouble
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "q1", title: "Research Interests?", content: "I focus on AI and data optimization." },
|
||||
{ id: "q2", title: "Degree Goal?", content: "Pursuing an MS leading into a PhD program." },
|
||||
{ id: "q3", title: "Timeline?", content: "Applications for the Fall 2025 cycle." }
|
||||
]}
|
||||
sideTitle="Common Inquiries"
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "q1", title: "Which research areas are prioritized?", content: "Focus is primarily on AI model optimization, distributed computing, and data-intensive systems." },
|
||||
{ id: "q2", title: "Why these specific universities?", content: "These institutions offer the best alignment for my doctoral transition and advanced research infrastructure." }
|
||||
]}
|
||||
title="Application Inquiries"
|
||||
description="Commonly asked questions regarding my academic objectives."
|
||||
textboxLayout="default"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Inquiries"
|
||||
title="Get in Touch"
|
||||
description="Open for research collaboration or professional networking."
|
||||
text="I am available for further discussions regarding my research proposals and academic profile. Please feel free to request my full CV via email."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
<FooterLogoEmphasis
|
||||
logoText="GradPath"
|
||||
leftLink={{ text: "Contact", href: "#contact" }}
|
||||
rightLink={{ text: "Back to Top", href: "#" }}
|
||||
columns={[
|
||||
{ items: [{ label: "Research", href: "#projects" }, { label: "Degree Programs", href: "#university" }] },
|
||||
{ items: [{ label: "Contact", href: "#contact" }, { label: "Back to Top", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user