Skip to content

Commit ff1f270

Browse files
feat(ourContacts): create responsive contact section with social links and email hover effect
- Added a responsive contact section with a background image and opacity. - Integrated social media icons (Facebook, Instagram, Twitter, LinkedIn) with external links. - Included email with a hover effect, applying a bottom border on hover for better user interaction. - Used Tailwind CSS for layout, styling, and hover transitions.
1 parent 44065b4 commit ff1f270

File tree

3 files changed

+98
-0
lines changed

3 files changed

+98
-0
lines changed

src/app/(home)/page.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import FAQList from '@/components/FAQ/FAQList'
2+
import { OurContacts } from '@/components/ourContacts'
23

34
import { About } from './about'
45
import { EventLocation } from './eventLocation'
@@ -30,6 +31,10 @@ export default function Home() {
3031
<div id="FAQList" className="pt-32">
3132
<FAQList />
3233
</div>
34+
35+
<div id="OurContacts" className="pt-32">
36+
<OurContacts />
37+
</div>
3338
</div>
3439
)
3540
}

0 commit comments

Comments
 (0)