Skip to content

Commit

Permalink
TRY #2
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Jan 25, 2025
1 parent d636623 commit 0c02113
Showing 1 changed file with 3 additions and 85 deletions.
88 changes: 3 additions & 85 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,99 +1,17 @@
import ContentMedia from "@/components/ContentMedia/ContentMedia";
import Place from "@/components/Place/Place";
import Faq from "@/components/Faq/Faq";
import {SponsorProps} from "@/components/SponsorList/Sponsor/Sponsor.types";
import SponsorList from "@/components/SponsorList/SponsorList";


import Container from "@/layouts/Container";
import Hero from '@/components/Hero/Hero';

export default function Home() {
const sponsors: SponsorProps[] = [
{
type: "platinum",
name: "Adobe",
logoSrc: "adobe.svg",
},
{
type: "gold",
name: "Dn'D",
logoSrc: "dnd.svg",
},
{
type: "gold",
name: "Hyvä",
logoSrc: "hyva.svg",
},
{
type: "gold",
name: "Ati4 Group",
logoSrc: "ati4group.svg",
},
{
type: "gold",
name: "Platform.sh",
logoSrc: "platformsh.svg",
},
{
type: "gold",
name: "Blackbird",
logoSrc: "blackbird.svg",
},
{
type: "gold",
name: "DATASOLUTION",
logoSrc: "datasolution.svg",
},
{
type: "silver",
name: "PH2M",
logoSrc: "ph2m.svg",
},
{
type: "silver",
name: "Sensefuel",
logoSrc: "sensefuel.svg",
},
{
type: "silver",
name: "PayPlug",
logoSrc: "payplug.svg",
},
{
type: "silver",
name: "Mollie",
logoSrc: "mollie.svg",
},
{
type: "silver",
name: "Spiriit",
logoSrc: "spiriit.svg",
},
{
type: "silver",
name: "Sutunam",
logoSrc: "Sutunam.svg",
},
{
type: "bronze",
name: "Nosto",
logoSrc: "nosto.svg",
},
{
type: "bronze",
name: "Socloz",
logoSrc: "socloz.svg",
},
{
type: "bronze",
name: "Akeneo",
logoSrc: "akeneo.svg",
},
];


return (
<div className="">
<Hero/>
<SponsorList items={sponsors}/>
<Container size="large">
<div className="content-media-sections flex flex-col gap-12 py-12">
<ContentMedia
Expand Down

0 comments on commit 0c02113

Please sign in to comment.