-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(landing): pivot to polish landing and new strategy
- Loading branch information
Showing
49 changed files
with
944 additions
and
365 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 |
---|---|---|
@@ -0,0 +1,72 @@ | ||
'use client' | ||
|
||
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@linkerry/ui-components/client' | ||
import { cn } from '@linkerry/ui-components/utils' | ||
import { HTMLAttributes } from 'react' | ||
import { useBodyClass } from '../../../shared/hooks/useBodyClass' | ||
import './connectorLogos.css' | ||
|
||
const companyNamesToShow = [ | ||
'active-campaign', | ||
'airtable', | ||
'discord', | ||
'excel', | ||
'github', | ||
'google', | ||
'instagram', | ||
'jira', | ||
'linkedIn', | ||
'mailchimp', | ||
'microsoft', | ||
'mysql', | ||
'notion', | ||
'openai', | ||
'sendgrid', | ||
'shopify', | ||
'slack', | ||
'stripe', | ||
'youtube', | ||
'zendesk', | ||
] | ||
|
||
export interface CompanyLogoProps extends HTMLAttributes<HTMLElement> { | ||
companyName: string | ||
} | ||
|
||
const CompanyLogo = ({ companyName }: CompanyLogoProps) => { | ||
return ( | ||
<TooltipProvider delayDuration={0}> | ||
<Tooltip> | ||
<TooltipTrigger> | ||
{/* <Image width={50} height={50} className='bg-slate-50 aspect-square p-1' key={companyName} src={`/images/landing/companies/${companyName}.svg`} alt={companyName} /> */} | ||
<img className="inline-block h-20 object-contain" src={`/images/landing/companies/${companyName}.svg`} alt={companyName} /> | ||
</TooltipTrigger> | ||
<TooltipContent> | ||
<p>{companyName}</p> | ||
</TooltipContent> | ||
</Tooltip> | ||
</TooltipProvider> | ||
) | ||
} | ||
|
||
export interface CompaniesImagesProps extends HTMLAttributes<HTMLElement> {} | ||
|
||
export const CompaniesImages = ({ className, ...rest }: CompaniesImagesProps) => { | ||
// the connectors image are overlfow X axies, so after mount, add class to body | ||
useBodyClass('overflow-x-hidden') | ||
|
||
return ( | ||
<section className={cn('scroll-container', className)} {...rest}> | ||
<div className="carousel-primary bg-purple-200"> | ||
{companyNamesToShow.map((companyName) => ( | ||
<CompanyLogo key={companyName} companyName={companyName} /> | ||
))} | ||
</div> | ||
<div className="carousel-primary carousel-secondary bg-purple-200"> | ||
{companyNamesToShow.map((companyName) => ( | ||
<CompanyLogo key={companyName} companyName={companyName} /> | ||
))} | ||
</div> | ||
</section> | ||
) | ||
} |
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,26 @@ | ||
'use client' | ||
|
||
import { useTheme } from 'next-themes' | ||
import Image from 'next/image' | ||
import { useEffect, useState } from 'react' | ||
|
||
export const CompaniesHeroImage = () => { | ||
const { theme } = useTheme() | ||
const [key, setKey] = useState<string>('default') | ||
|
||
useEffect(() => { | ||
setKey(theme ?? '') | ||
}, [theme]) | ||
|
||
return ( | ||
<Image | ||
className="brightness-[0.9] hover:brightness-100 dark:brightness-[0.6] dark:hover:brightness-100" | ||
objectFit="contain" | ||
key={key} | ||
src={theme === 'light' ? '/images/landing/companies/companies-light.svg' : '/images/landing/companies/companies-dark.svg'} | ||
width={2880} | ||
height={1800} | ||
alt="Some of avaible apps" | ||
/> | ||
) | ||
} |
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 |
---|---|---|
|
@@ -5,71 +5,22 @@ export const FooterPL = () => { | |
<footer id="footer"> | ||
<hr className="w-11/12 mx-auto" /> | ||
|
||
<section className="container py-20 grid grid-cols-3 md:grid-cols-4 xl:grid-cols-6 gap-x-2 gap-y-2 md:gap-x-12 md:gap-y-8"> | ||
<div className="col-span-full xl:col-span-2"> | ||
<section className="container py-20 grid grid-cols-2 gap-4 md:grid-cols-3 md:pl-40 md:gap-x-12 md:gap-y-8 xl:pl-60"> | ||
<div className="col-span-full md:col-span-1"> | ||
<a rel="noreferrer noopener" target="_blank" href="/" className="font-bold text-xl flex gap-2 items-center"> | ||
<Icons.Logo /> | ||
Linkerry | ||
</a> | ||
<a rel="noreferrer noopener" target="_blank" href="https://legal.maxdata.app/company.pdf" className="mt-3 underline underline-offset-3"> | ||
Maxdata App LTD | ||
</a> | ||
</div> | ||
|
||
{/* <div className="flex flex-col gap-2"> | ||
<h3 className="font-bold text-lg">Follow US</h3> | ||
<div> | ||
<a rel="noreferrer noopener" target="_blank" href="https://x.com/linkerry_ai" className="opacity-60 hover:opacity-100"> | ||
</a> | ||
</div> | ||
</div> */} | ||
|
||
{/* <div className="flex flex-col gap-2"> | ||
<h3 className="font-bold text-lg">Platforms</h3> | ||
<div> | ||
<a rel="noreferrer noopener" target="_blank" href="#" className="opacity-60 hover:opacity-100"> | ||
Web | ||
</a> | ||
</div> | ||
<div> | ||
<a rel="noreferrer noopener" target="_blank" href="#" className="opacity-60 hover:opacity-100"> | ||
Mobile | ||
</a> | ||
</div> | ||
<div> | ||
<a rel="noreferrer noopener" target="_blank" href="#" className="opacity-60 hover:opacity-100"> | ||
Desktop | ||
</a> | ||
</div> | ||
</div> */} | ||
|
||
<div className="flex flex-col gap-2"> | ||
<h3 className="font-bold text-lg">Dokumenty</h3> | ||
{/* <div> | ||
<a rel="noreferrer noopener" href="#connectors" className="opacity-60 hover:opacity-100"> | ||
Connectors | ||
</a> | ||
</div> | ||
<div> | ||
<a rel="noreferrer noopener" href="#pricing" className="opacity-60 hover:opacity-100"> | ||
Pricing | ||
</a> | ||
</div> | ||
|
||
<div> | ||
<a rel="noreferrer noopener" target="_blank" href="/road-map" className="opacity-60 hover:opacity-100"> | ||
Road Map | ||
</a> | ||
</div> */} | ||
|
||
<div> | ||
<a | ||
rel="noreferrer noopener" | ||
target="_blank" | ||
href="/docs/linkerry_regulamin_treści_cyfrowe.pdf" | ||
className="opacity-60 hover:opacity-100" | ||
> | ||
<a rel="noreferrer noopener" target="_blank" href="/docs/linkerry_regulamin_treści_cyfrowe.pdf" className="opacity-60 hover:opacity-100"> | ||
Regulamin | ||
</a> | ||
</div> | ||
|
@@ -100,6 +51,11 @@ export const FooterPL = () => { | |
</a> | ||
</div> | ||
<div> | ||
<a rel="noreferrer noopener" target="_blank" href="mailto:[email protected]" className="opacity-60 hover:opacity-100"> | ||
CEO | ||
</a> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
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
Oops, something went wrong.