Skip to content
Merged
Show file tree
Hide file tree
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
Binary file added src/assets/fonts/source-serif-pro-bold.ttf
Binary file not shown.
5 changes: 5 additions & 0 deletions src/assets/images/belgium.svg
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 src/assets/images/bottles.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/cocktail.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/assets/images/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/assets/images/logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/assets/images/medium.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/minus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/images/nose.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/party.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/plus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
8 changes: 8 additions & 0 deletions src/assets/images/tongue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src/components/Destination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,28 @@ export default function Destination() {
return (
<div className="max-w-7xl mx-auto flex items-center justify-start pt-10 px-8 gap-x-5">
<Link href="/">
<a className="flex justify-center gap-x-4">
<a className="flex justify-center items-center gap-x-4">
<Image src={homeIcon} alt="home" className="object-contain" />
<span className="font-regular">Home</span>
<span className="font-regular leading-5">Home</span>
</a>
</Link>

<Image src={arrow} alt="arrow" className="object-contain" />

<Link href="spirits">
<a className="font-regular">Spirits</a>
<a className="font-regular leading-5">Spirits</a>
</Link>

<Image src={arrow} alt="arrow" className="object-contain" />

<Link href="kissMy">
<a className="font-regular">Kiss My</a>
<a className="font-regular leading-5">Kiss My</a>
</Link>

<Image src={arrow} alt="arrow" className="object-contain" />

<Link href="/">
<a className="font-bold">Kiss My Rhubarb</a>
<a className="font-bold leading-5">Kiss My Rhubarb</a>
</Link>
</div>
)
Expand Down
42 changes: 42 additions & 0 deletions src/components/Footer/Community.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import { useIsDesktop } from '../context/DesktopWidthProvider';
import Link from 'next/link';
import cn from 'classnames';

export default function Community() {
const { isDesktop } = useIsDesktop();

return (
<div className={cn("flex", {'flex-col': isDesktop,
'border-b border-lightGray2 justify-between': !isDesktop})}
>
<h3 className="text-lightGray2 text-base leading-10 font-regular">
COMMUNITY
</h3>
<div className={cn("flex", {'flex-col': isDesktop,
'justify-between gap-6': !isDesktop})}
>
<Link href={'/'}>
<a className="text-white text-base leading-10 font-regular
transition-color duration-500 hover:text-lightGray2"
>
Lexir for Brands
</a>
</Link>
<Link href={'/'}>
<a className="text-white text-base leading-10 font-regular
transition-color duration-500 hover:text-lightGray2"
>
Business Buyers
</a>
</Link>
<Link href={'/'}>
<a className="text-white text-base leading-10 font-regular
transition-color duration-500 hover:text-lightGray2"
>
Sales Affiliates
</a>
</Link>
</div>
</div>
)
}
Loading