Skip to content

Commit 732988e

Browse files
committed
--add-temp
1 parent f74a6b9 commit 732988e

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

app/Advisor/page.tsx

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
"use client";
2+
import Image from "next/image";
3+
4+
export default function FacultyAdvisor() {
5+
return (
6+
<section className="w-full px-2 md:px-12 lg:px-32 xl:px-48 py-24 bg-black transition-colors duration-500">
7+
<div className="relative max-w-6xl mx-auto rounded-3xl border border-border bg-white/90 dark:bg-[#181f2a]/90 backdrop-blur-xl shadow-2xl p-10 md:p-20 flex flex-col md:flex-row items-center gap-10 md:gap-20 overflow-hidden">
8+
{/* Decorative Blobs */}
9+
<div className="absolute -top-24 -left-24 w-72 h-72 bg-gradient-to-br from-primary/30 via-secondary/30 to-accent/30 rounded-full blur-3xl opacity-60 pointer-events-none" />
10+
<div className="absolute -bottom-24 -right-24 w-72 h-72 bg-gradient-to-tr from-secondary/30 via-primary/30 to-accent/30 rounded-full blur-3xl opacity-50 pointer-events-none" />
11+
12+
{/* Profile Image with Glow */}
13+
<div className="flex-shrink-0 relative">
14+
<span className="absolute -inset-4 bg-gradient-to-tr from-primary/40 to-secondary/40 rounded-2xl blur-2xl opacity-80" />
15+
<Image
16+
src=""
17+
alt="Faculty Advisor"
18+
width={280}
19+
height={370}
20+
className="rounded-2xl border-4 border-primary shadow-xl object-cover"
21+
priority
22+
/>
23+
</div>
24+
25+
{/* Info */}
26+
<div className="flex-1 text-center md:text-left">
27+
<h2 className="text-xl md:text-3xl font-black text-primary dark:text-white mb-2 tracking-tight drop-shadow">
28+
Meet Our Faculty Advisor
29+
</h2>
30+
<h3 className="text-base md:text-lg font-extrabold text-black dark:text-white mb-3 tracking-wide drop-shadow-lg">
31+
Mrs. Kasturi Dikpati (Ghosh)
32+
</h3>
33+
<p className="text-sm md:text-base text-gray-700 dark:text-gray-200 mb-5 leading-relaxed font-medium">
34+
Mrs. Kasturi Dikpati (Ghosh) is a distinguished professor in Computer Science with over 20 years of experience in research and mentoring. She inspires our team with her expertise, vision, and passion for innovation.
35+
</p>
36+
<div className="mt-3 bg-black border-l-4 border-primary rounded-xl p-4 shadow-inner">
37+
<h4 className="text-base font-bold text-primary mb-1">Our Vision</h4>
38+
<p className="italic text-gray-100 text-sm md:text-base font-medium">
39+
“Our vision is to foster a collaborative and innovative environment where students are empowered to explore, create, and lead. Together, we strive to make a positive impact through research, technology, and community engagement.”
40+
</p>
41+
</div>
42+
</div>
43+
</div>
44+
</section>
45+
);
46+
}

app/Landing/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ import NavBar from "../NavBar/page";
66
import Overview from "../Overview/page";
77
import Testimonial from "../Testimonial/page";
88
import UpcomingEvent from "../UpcomingEvent/page";
9+
import Advisor from "../Advisor/page";
910

1011
export default function Landing() {
1112
return (
1213
<div>
1314
<NavBar />
1415
<Header />
1516
<UpcomingEvent />
17+
<Advisor />
1618
<Overview/>
1719
<Domains />
1820
<Testimonial/>

0 commit comments

Comments
 (0)