We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 635b305 + 90b68b4 commit 887617eCopy full SHA for 887617e
src/components/ui/AboutPage/AboutFourthSection/AboutFourthSection.tsx
@@ -0,0 +1,17 @@
1
+import React from 'react';
2
+
3
+import AtTheGetGoCard from '@/components/ui/AboutPage/AboutFourthSection/AtTheGetGoCard';
4
+import ThisYearSamahanCard from '@/components/ui/AboutPage/AboutFourthSection/ThisYearSamahanCard';
5
6
+const AboutFourthSection = () => {
7
+ return (
8
+ <>
9
+ <div className="relative flex flex-col justify-start w-full gap-2 p-5">
10
+ <ThisYearSamahanCard />
11
+ <AtTheGetGoCard />
12
+ </div>
13
+ </>
14
+ );
15
+};
16
17
+export default AboutFourthSection;
0 commit comments