icon picker
Design Sections

To distribute the work between each person, the landing page is divided into certain section:
Header
Hero
CTA
Speakers
IndustryGrid
BrandsScollable
AgendaTimeline
EventConventions
Sponsors
FAQs
Footer
These Sections are represented as Components in the src/pages/index.astro file.
---
import Layout from '../layouts/Layout.astro';
import Header from "../components/Header.astro"
import Hero from "../components/Hero.astro"
import CTA from "../components/CTA.astro"
import Speakers from "../components/Speakers.astro"
import IndustryGrid from "../components/IndustryGrid.astro"
import BrandsScollable from "../components/BrandsScollable.astro"
import AgendaTimeline from "../components/AgendaTimeline.astro"
import EventConventions from "../components/EventConventions.astro"
import Sponsors from "../components/Sponsors.astro"
import FAQs from "../components/FAQs.astro"
import Footer from "../components/Footer.astro"
---

<Layout title="Welcome to Astro.">
<main class="m-4 flex flex-col gap-4">
<Header />
<Hero />
<CTA />
<Speakers />
<IndustryGrid />
<BrandsScollable />
<AgendaTimeline />
<EventConventions />
<Sponsors />
<FAQs />
<Footer />
</main>
</Layout>

For example, if you decide to work on CTA section, then you need to assign yourself that section.
Design Sections
Name
Assignee
Progress
Notes
Header
000
100
Open
Hero
000
100
Open
CTA
000
100
Open
Speakers
000
100
Open
Industry Grid
000
100
Open
Brands Scrollable
000
74
Open
Agenda Timeline
000
100
Open
Sponsors
000
100
Open
Event Conventions
000
100
Open
FAQs
000
100
Open
Footer
000
100
Open
There are no rows in this table

Header Section

image.png

Hero Section

image.png

CTA SECTION (Call To Action)

image.png

Speakers Section

image.png

Industry Grid

image.png

Brands Scollable

image.png

Agenda Timeline

image.png

Event Conventions

image.png

Sponsors

image.png

FAQs

image.png

Footer

image.png

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.