Skip to content
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

fix(Aait-web-1): fix the footer on the success stories page by removing the duplicate footer #436

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
75 changes: 0 additions & 75 deletions aait/web/group-1/app/success-stories/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,81 +69,6 @@ export default async function Page() {
}
</div>
</div>
<div className='font-poppins grid grid-cols-4 h-[360px] space-x-10'>
<div className='col-span-1 mt-20'>
<Image
className='pt-3'
src='/images/logo.png'
width={ 150 }
height={ 40 }
alt='A2SV Main Logo'
/>
<div className='text-gray-500 mt-[100px] text-sm'>
<p>© Copyright 2023 A2SV Foundation.</p>
<p>Terms of service | Privacy Policy</p>
</div>
</div>

<div className='col-span-1 mt-20'>
<h1 className='text-[18px] mb-[14px] font-semibold'>Our Teams</h1>
<ul className='flex flex-col space-y-[16px] text-gray-500 text-sm'>
<li>
<Link href='/'>Advisors</Link>
</li>
<li>
<Link href='/'>Board Members</Link>
</li>
<li>
<Link href='/'>Executives</Link>
</li>
<li>
<Link href='/'>Groups</Link>
</li>
</ul>
</div>
<div className='col-span-1 mt-20'>
<h1 className='text-[18px] mb-[14px] font-semibold'>Our Teams</h1>
<ul className='flex flex-col space-y-[16px] text-gray-500 text-sm'>
<li>
<Link href='/'>Donate</Link>
</li>
<li>
<Link href='/'>Get involved</Link>
</li>
<li>
<Link href='/'>About us</Link>
</li>
</ul>
</div>
<div className='col-span-1 mt-20'>
<div>
<h3 className='mb-5 text-[18px] font-semibold'>Get in touch</h3>
<div className='text-gray-500 text-sm'>
<p>Questions or feedback?</p>
<p>we would like to hear from you</p>
</div>
</div>
<div className='mt-5'>
<ul className='flex flex-row justify-start space-x-5'>
{
socialIcons.map(icon => {
return (
<li key={ icon }>
<Image
src={ icon }
alt='Social Media Icons'
width={ 25 }
height={ 25 }
/>
</li>
);
})
}
</ul>
</div>
</div>

</div>
</div>
)
}