Skip to content

Commit

Permalink
added
Browse files Browse the repository at this point in the history
  • Loading branch information
Yashgupta9330 committed Apr 27, 2024
1 parent 40214fa commit 49dc1d4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Components/Card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function Card() {
<div className='md:max-w-[1104px] w-[95%] flex flex-col items-center justify-center gap-24'>
{/* First Card */}
<div className="md:w-full w-[95%] flex flex-col md:flex-row sm:items-center justify-start items-start md:justify-between">
<div data-aos="fade-right" data-aos-duration="1000" className='md:px-12 lg:px-24 flex items-center justify-center'>
<div data-aos="fade-right" data-aos-duration="1000" className='md:px-12 lg:px-24 flex items-center justify-center grow'>
<img src={image123} alt="image-1" className="w-1/2 md:w-[357px]" />
</div>
<div ref={ref1}>
Expand Down
5 changes: 3 additions & 2 deletions src/Components/Logo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ export default function Logo({ classname, foot = '0' }) {

return (
<>
{foot === '0' ? (
{/* {foot === '0' ? (
<img
src={output}
alt="logo"
className="w-[300px] h-[300px]"
/>
) : (
<img src={logo2} className={classname} />
)}
)} */}
<img src={logo2} className={classname} />
</>
);
}
8 changes: 4 additions & 4 deletions src/Components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ export default function Navbar() {

return (
<div className="z-[150] w-full min-h-[144px] flex items-center justify-center font-roboto mr-0 md:ml-0 fixed top-0 left-0">
<div className=" w-[95%] lg:w-4/5 min-h-[85px] rounded-lg bg-[#8576FF] bg-opacity-100 py-[24px] px-[12px] md:px-[24px] box">
<div className=" w-[95%] lg:w-4/5 min-h-[85px] rounded-lg bg-[#e4dff4] bg-opacity-100 py-[24px] px-[12px] md:px-[24px] box">
<div className="flex items-center justify-between">
<div className="flex gap-8 text-black">
<span className="text-3xl font-bold text-[#FFFFFF]">Nikaru</span>
<ul className="hidden md:flex gap-4 items-center text-normal justify-center text-[#FFFFFF] font-medium leading-6 tracking-tighter">
<div className="flex gap-8">
<span className="text-3xl font-bold text-[#20294C]">Nikaru</span>
<ul className="hidden md:flex gap-4 items-center text-normal justify-center text-[#20294C] font-medium leading-6 tracking-tighter">
{navItems.map((item) => (
<li key={item}>{item}</li>
))}
Expand Down

0 comments on commit 49dc1d4

Please sign in to comment.