Skip to content

Commit

Permalink
add : mobile page
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushikeshnimkar committed Aug 30, 2024
1 parent 347cf5b commit 3ad1aab
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 6 deletions.
Binary file added public/images/mobile/mobile1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 40 additions & 6 deletions src/app/mobile/page.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,43 @@
import React from 'react'
import Image from "next/image";
import React from "react";
import CustomBtn from "@/components/CustomBtn";

const mobile = () => {
const Mobile = () => {
return (
<div className='h-screen'>mobile</div>
)
}
<div className="flex flex-col lg:flex-row lg:mt-32 px-4 lg:px-0 mt-32">
<h2 className="text-3xl py-6 font-light mb-6 lg:hidden">
Blockchain VPN app for your privacy and online security
</h2>
<div className="w-full lg:w-1/2 flex justify-center items-center mb-8 lg:mb-0">
<Image
src="/images/mobile/mobile1.png"
width={500}
height={500}
alt="mobile"
className="w-full h-auto max-w-md lg:max-w-none lg:h-[50vw] object-cover"
/>
</div>
<div className="w-full lg:w-1/2 flex justify-center items-center">
<div className="max-w-md lg:max-w-xl md:mx-10">
<h2 className="hidden lg:block text-3xl lg:text-5xl xl:text-6xl font-light mb-6 lg:mb-10">
Blockchain VPN app for your privacy and online security
</h2>
<p className="text-lg lg:text-xl mb-6 lg:mb-10 font-light">
Empower your online activity with our Erebrus mobile app for secure,
private and accessible network. We utilize NFTs for robust privacy
and decentralization.
</p>
<div className="flex justify-center lg:justify-start">
<CustomBtn
width="w-2/5 sm:w-auto bg-[#11D9C5] px-6 py-2 lg:px-8 lg:py-3"
title="Download Now"
link="https://drive.google.com/file/d/1jdkqwIXY825iG3shRRoFyg5SMGy6LN8J/view?usp=drive_link"
/>
</div>
</div>
</div>
</div>
);
};

export default mobile
export default Mobile;

0 comments on commit 3ad1aab

Please sign in to comment.