Skip to content

Commit d6a05ff

Browse files
authored
Merge pull request #85 from SAMAHAN-Systems-Development/feature/26-AboutThirdSection
Feature/26 about third section
2 parents c12e5bb + 159294a commit d6a05ff

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed
1.88 MB
Loading

src/app/AboutThirdSection/page.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import AboutThirdSection from "@/components/ui/AboutPage/AboutThirdSection/AboutThirdSection";
2+
3+
AboutThirdSection;
4+
5+
export default function Home() {
6+
return (
7+
<main>
8+
<AboutThirdSection />
9+
</main>
10+
);
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import React from 'react';
2+
import Image from 'next/image';
3+
4+
import imgSrc from 'public/assets/images/RoxasGate (2).png';
5+
6+
import WeNavigateCard from '@/components/ui/AboutPage/AboutThirdSection/WeNavigateCard';
7+
8+
const AboutThirdSection = () => {
9+
return (
10+
<>
11+
<div className="flex flex-col justify-start w-full gap-2 p-5 xl:flex-row md:flex-col">
12+
<WeNavigateCard />
13+
<div className="relative xl:w-2/5 md:w-full w-full xl:h-auto lg:h-96 h-96 rounded-card">
14+
<Image
15+
src={imgSrc}
16+
placeholder="blur"
17+
alt="Ateneo Gate"
18+
className="object-fill"
19+
fill
20+
/>
21+
</div>
22+
</div>
23+
</>
24+
);
25+
};
26+
27+
export default AboutThirdSection;

0 commit comments

Comments
 (0)