File tree 3 files changed +38
-0
lines changed
components/ui/AboutPage/AboutThirdSection
3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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 ;
You can’t perform that action at this time.
0 commit comments