Skip to content

Fix nav links and typo #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Open [http://localhost:3000](http://localhost:3000) with your browser to see the

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically load the [Poppins](https://fonts.google.com/specimen/Poppins) and [Playball](https://fonts.google.com/specimen/Playball) fonts.

## Learn More

Expand Down
1 change: 0 additions & 1 deletion app/Components/Footer-Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ function FooterContent() {
{ name: "About", href: "#about" },
{ name: "Leadership", href: "#leadership" },
{ name: "Ventures", href: "#ventures" },
{ name: "Investments", href: "#investments" },
{ name: "Media", href: "#media" },
{ name: "Contact", href: "#contact" },
];
Expand Down
2 changes: 1 addition & 1 deletion app/Components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Header: React.FC = () => {
const [isSidebarOpen, setIsSidebarOpen] = useState(false);
const [activeItem, setActiveItem] = useState<string>("");

const navItems = ["About", "Leadership", "Ventures", "Investments", "Media"];
const navItems = ["About", "Leadership", "Ventures", "Media"];

useEffect(() => {
if (isSidebarOpen) {
Expand Down
2 changes: 1 addition & 1 deletion app/Components/Industry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Industry: React.FC = () => {

{/* Text content */}
<div className="absolute inset-0 flex flex-col items-center justify-center text-center text-white px-4 z-20">
<h1 className="text-poppins-bold text-heading-responsive text-[60px] font-bold sm:leading-nomal ">
<h1 className="text-poppins-bold text-heading-responsive text-[60px] font-bold sm:leading-normal ">
Investing in <br /> Visionaries Reshaping Industries
</h1>
<div className="gap-[40px] flex flex-col items-center justify-center mt-4">
Expand Down