Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/Components/contact-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,24 +179,28 @@ export default function ContactSection() {
<a
href="#"
className="text-white hover:text-blue-400 transition-colors"
aria-label="LinkedIn"
>
<LinkedInIcon />
</a>
<a
href="#"
className="text-white hover:text-blue-400 transition-colors"
aria-label="Twitter"
>
<XIcon />
</a>
<a
href="#"
className="text-white hover:text-blue-400 transition-colors"
aria-label="Instagram"
>
<InstagramIcon />
</a>
<a
href="#"
className="text-white hover:text-blue-400 transition-colors"
aria-label="Facebook"
>
<FacebookRoundedIcon />
</a>
Expand Down
7 changes: 6 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Metadata } from "next";
import type { Metadata, Viewport } from "next";
import { Poppins, Playball } from "next/font/google";
import "./globals.css";

Expand All @@ -20,6 +20,11 @@ export const metadata: Metadata = {
description: "Driving growth across sectors through purpose-led leadership",
};

export const viewport: Viewport = {
width: "device-width",
initialScale: 1,
};

export default function RootLayout({
children,
}: {
Expand Down