Skip to content

Commit

Permalink
feat: 🎸 company logos in landing page (#143)
Browse files Browse the repository at this point in the history
* feat: 🎸 company logos in landing page

* fix: 🐛 feedbacks
  • Loading branch information
OdapX authored and gmpetrov committed Sep 8, 2023
1 parent e1fa394 commit 1070341
Show file tree
Hide file tree
Showing 10 changed files with 99 additions and 0 deletions.
80 changes: 80 additions & 0 deletions components/PartnerLogos.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
import Image from 'next/image';
import React from 'react';

export default function PartnerLogos() {
return (
<div className="py-24 bg-black sm:py-32">
<div className="flex flex-col justify-center px-6 mx-auto max-w-7xl lg:px-8">
<h2 className="text-xl text-center text-white font-display leading-12 pb-9">
Trusted by the world&apos;s most innovative teams
</h2>
<div className="grid items-center grid-cols-2 mx-auto mt-10 place-items-center xs:grid-cols-2 gap-x-10 gap-y-10 sm:grid-cols-3 sm:gap-x-10 lg:mx-0 lg:max-w-none lg:grid-cols-4">
<Image
loading="lazy"
className="object-contain lg:col-span-1"
src="/landing-page/company-logos/klarna.png"
alt="Klarna Logo"
width={130}
height={30}
/>
<Image
loading="lazy"
className="object-contain lg:col-span-1"
src="/landing-page/company-logos/bcg.png"
alt="BCG Logo"
width={80}
height={60}
/>
<Image
loading="lazy"
className="object-contain lg:col-span-1"
src="/landing-page/company-logos/bnp-paribas.png"
alt="BNP Paribas Logo"
width={200}
height={150}
/>
<Image
loading="lazy"
className="object-contain lg:col-span-1"
src="/landing-page/company-logos/bellman.svg"
alt="Bellman Logo"
width={180}
height={90}
/>
<Image
loading="lazy"
className="object-contain lg:col-span-1"
src="/landing-page/company-logos/patreon.png"
alt="Patreon Logo"
width={155}
height={70}
/>
<Image
loading="lazy"
className="object-contain lg:col-span-1"
src="/landing-page/company-logos/maskex.png"
alt="Maskex Logo"
width={140}
height={60}
/>
<Image
loading="lazy"
className="object-contain lg:col-span-1"
src="/landing-page/company-logos/pmu.jpg"
alt="PMU Logo"
width={130}
height={40}
/>
<Image
loading="lazy"
className="object-contain lg:col-span-1"
src="/landing-page/company-logos/abu-dhabi-chamber.png"
alt="Abu Dhabi Chamber Logo"
width={180}
height={90}
/>
</div>
</div>
</div>
);
}
2 changes: 2 additions & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { HeroChatGPTPlugin } from '@app/components/landing-page/HeroChatGPTPlugi
import Languages from '@app/components/landing-page/Languages';
// import { Pricing } from '@app/landing-page/components/Pricing';
import { PrimaryFeatures } from '@app/components/landing-page/PrimaryFeatures';
import PartnerLogos from '@app/components/PartnerLogos';
import SEO from '@app/components/SEO';

import ChatBotBenefits from './ChatBotBenefits';
Expand Down Expand Up @@ -83,6 +84,7 @@ export default function Home() {
<main className={clsx('bg-black min-heigh-full', mounted ? mode : '')}>
{/* <Hero /> */}
<HeroChatGPTPlugin />
<PartnerLogos/>
{/* <CompanyLogos /> */}
{/* <Image
src="/features.png"
Expand Down
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 public/landing-page/company-logos/bcg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions public/landing-page/company-logos/bellman.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 public/landing-page/company-logos/bnp-paribas.png
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 public/landing-page/company-logos/klarna.png
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 public/landing-page/company-logos/maskex.png
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 public/landing-page/company-logos/patreon.png
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 public/landing-page/company-logos/pmu.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit 1070341

@vercel
Copy link

@vercel vercel bot commented on 1070341 Sep 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.