-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from Arnab7456/main
sign up navLink fix
- Loading branch information
Showing
6 changed files
with
72 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
|
||
const Body = () => { | ||
return ( | ||
<div> | ||
<h1>Body</h1> | ||
<div className="p-5 max-w-2xl mx-auto text-center"> | ||
<h1 className="text-4xl font-bold my-5">Body</h1> | ||
<p className="text-lg"> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Illo id sunt quam unde velit officia enim ad iusto nulla, fugit odit saepe consequuntur tenetur beatae, laboriosam, dolore sint? Non, debitis! | ||
</p> | ||
</div> | ||
) | ||
); | ||
} | ||
|
||
export default Body | ||
export default Body; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
const Footer = () => { | ||
return ( | ||
<div> | ||
<footer className='bg-[#e2e8f0] text-black py-4 pt-5'> | ||
<div className='container mx-auto flex flex-col md:flex-row items-center justify-between px-4'> | ||
<div className='flex items-center text-center mb-4 md:mb-0'> | ||
<span className="ml-4 text-lg font-semibold">© Government of India</span> | ||
</div> | ||
<div className='text-center'> | ||
<p>Toll-Free Contact Number: 1800 000 0000</p> | ||
</div> | ||
</div> | ||
</footer> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
@tailwind utilities; | ||
|
||
/* Your custom styles below */ | ||
html, body { | ||
height: 100%; | ||
margin: 0; /* Remove default margin */ | ||
} | ||
|
||
.min-h-screen { | ||
min-height: 100vh; /* Ensures the layout takes at least the full viewport height */ | ||
} |