Skip to content
Merged
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
7 changes: 5 additions & 2 deletions components/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ export default function Hero({ heading, subHeading, cta1, cta2, imageSrc }) {
alt="Hero image"
/>
</div>
<button className="block mt-10 lg:mt-20 mx-auto w-16 h-16 p-5 rounded-full bg-indigo-50 hover:bg-indigo-100">
<a
href="#why-invest"
className="block mt-8 lg:mt-12 mx-auto w-16 h-16 p-5 rounded-full bg-indigo-50 hover:bg-indigo-100"
>
<svg
className="mx-auto text-indigo-500"
xmlns="http://www.w3.org/2000/svg"
Expand All @@ -45,7 +48,7 @@ export default function Hero({ heading, subHeading, cta1, cta2, imageSrc }) {
d="M19 9l-7 7-7-7"
/>
</svg>
</button>
</a>
</div>
);
}
2 changes: 1 addition & 1 deletion components/Sections/WhyInvest.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function WhyInvest({
whyInvestCardData,
}) {
return (
<section id="why-invest-part-1" className="py-20">
<section id="why-invest" className="py-20">
<div className="container px-4 mx-auto">
<div className="flex flex-wrap -mx-4">
<WhyInvestHero
Expand Down