Skip to content

Commit

Permalink
netcast section
Browse files Browse the repository at this point in the history
  • Loading branch information
devsisingh committed Jul 23, 2024
1 parent c4e5635 commit a76141f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 21 deletions.
Binary file added public/images/newsletter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/phone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default function Home() {
<WinnersPage/>
<DownloadNow />
{/* <Socials /> */}
<SubscribePage/>
{/* <SubscribePage/> */}
<Newsletter />
</main>
</>
Expand Down
17 changes: 9 additions & 8 deletions src/components/DownloadNow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,25 @@ const DownloadNow = () => {
return (
<div
style={roboto.style}
className='w-full h-[694px] my-[3%] flex justify-between items-center gap-10'
className='h-[694px] my-[3%] w-[80%] flex justify-between items-center gap-10'
>
<div className='flex pl-[5%] flex-col w-full lg:w-[50%]'>
<h4 className=' text-4xl lg:text-[62px] flex mb-[36px] flex-col leading-tight text-white'>
<div className='flex flex-col w-full lg:w-[50%]'>
<h4 className=' text-6xl flex mb-[36px] flex-col leading-tight text-white'>
<span>Download the Browser</span>
<span>Extension Today</span>
</h4>
<CustomBtn
link={
"https://chromewebstore.google.com/detail/netsepio/bbkfclgnbddljhepbfpongcollhocghd"
}
title={"Get Yours Now"}
width="w-[140px] lg:w-[191px]"
title={"Download Now"}
/>
</div>
<div className='flex flex-col relative h-full w-[50%]'>
<Image
src={"/images/phone.svg"}
className='hidden lg:flex object-cover'
<div className='flex flex-col relative'>
<img
src={"/images/phone.png"}
className='hidden lg:flex'
fill
alt='phone'
/>
Expand Down
25 changes: 13 additions & 12 deletions src/components/Newsletter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,32 @@ import Image from "next/image";
const Newsletter = () => {
const { roboto } = useFonts();
return (
<div className="w-[80%] mt-[5%] ">
<div className="flex mr-auto text-5xl">Tune into Expert NetCast </div>
<div
style={roboto.style}
className='w-[90%] h-[694px] mt-[5%] flex flex-row-reverse justify-between items-center gap-10'
className='h-[694px] flex flex-row-reverse justify-between items-center gap-10'
>
<div className='flex pl-[0%] sm:pl-[5%] flex-col w-[50%]'>
<h4 className=' text-2xl lg:text-[42px] flex mb-[36px] flex-col leading-tight text-white'>
<span>Join the community,</span>
<span>Keep the internet safe for all</span>
<div className='flex pl-[0%] sm:pl-[5%] flex-col w-[50%] -mt-40'>
<h4 className=' text-2xl flex mb-[36px] flex-col leading-tight text-gray-400'>
<span>Stay ahead of the curve on DePIN, online privacy, security, and the future of decentralized Web.</span>
</h4>
<CustomBtn
link='https://netsepio.substack.com/'
width='lg:w-[234px] mr-2 sm:mr-0'
title={"Subscribe To Our Newsletter"}
link='#'
width='lg:w-[234px] mr-2 sm:mr-0 bg-[#11D9C580]'
title={"Coming Soon"}
/>
</div>
<div className='flex flex-col relative h-[70%] sm:h-[80%] w-[40%] ml-10'>
<Image
src={"/images/newsletter.jpg"}
className='object-cover'
<div className='flex flex-col relative sm:h-[80%]'>
<img
src={"/images/newsletter.png"}
fill
priority
alt='phone'
/>
</div>
</div>
</div>
);
};

Expand Down

0 comments on commit a76141f

Please sign in to comment.