diff --git a/src/components/Header/Header.svelte b/src/components/Header/Header.svelte index 55b30bf5..1f5a6ede 100644 --- a/src/components/Header/Header.svelte +++ b/src/components/Header/Header.svelte @@ -7,7 +7,7 @@ let isNavOpen = false; -
+
Logo diff --git a/src/components/Sections/Section1.svelte b/src/components/Sections/Section1.svelte new file mode 100644 index 00000000..1dfc441e --- /dev/null +++ b/src/components/Sections/Section1.svelte @@ -0,0 +1,7 @@ + + + +

Build at a higher Frequency

+
diff --git a/src/components/Sections/Section2.svelte b/src/components/Sections/Section2.svelte new file mode 100644 index 00000000..254a22d9 --- /dev/null +++ b/src/components/Sections/Section2.svelte @@ -0,0 +1,7 @@ + + + +

Taking Back Control

+
diff --git a/src/components/Sections/Section3.svelte b/src/components/Sections/Section3.svelte new file mode 100644 index 00000000..8f6b5f59 --- /dev/null +++ b/src/components/Sections/Section3.svelte @@ -0,0 +1,7 @@ + + + +

Take Your Content & Relationships With You

+
diff --git a/src/components/Sections/Section4.svelte b/src/components/Sections/Section4.svelte new file mode 100644 index 00000000..c30ffb87 --- /dev/null +++ b/src/components/Sections/Section4.svelte @@ -0,0 +1,7 @@ + + + +

Publicly Vote for Your Preferred Apps

+
diff --git a/src/components/Sections/Section5.svelte b/src/components/Sections/Section5.svelte new file mode 100644 index 00000000..6eb0ed56 --- /dev/null +++ b/src/components/Sections/Section5.svelte @@ -0,0 +1,7 @@ + + + +

The Core of Our Technology

+
diff --git a/src/components/Sections/SectionNavigation.svelte b/src/components/Sections/SectionNavigation.svelte new file mode 100644 index 00000000..1edf2a87 --- /dev/null +++ b/src/components/Sections/SectionNavigation.svelte @@ -0,0 +1,13 @@ + + +
+ {#each { length: 5 } as _, i} + + {/each} +
diff --git a/src/components/Sections/SectionWrapper.svelte b/src/components/Sections/SectionWrapper.svelte new file mode 100644 index 00000000..a2597d6d --- /dev/null +++ b/src/components/Sections/SectionWrapper.svelte @@ -0,0 +1,8 @@ + + +
+ +
diff --git a/src/components/Sections/Sections.svelte b/src/components/Sections/Sections.svelte new file mode 100644 index 00000000..ee79e2df --- /dev/null +++ b/src/components/Sections/Sections.svelte @@ -0,0 +1,23 @@ + + + +
+ +
+ + +
+ +
diff --git a/src/lib/assets/Exit.svg b/src/lib/assets/Exit.svg deleted file mode 100644 index a9f1f7bc..00000000 --- a/src/lib/assets/Exit.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/lib/assets/Menu.svg b/src/lib/assets/Menu.svg deleted file mode 100644 index e21d6f05..00000000 --- a/src/lib/assets/Menu.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 80eba191..893239e5 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -4,7 +4,7 @@
-
+
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 7e39d921..b68db2bc 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,7 +1,63 @@ - -

Welcome

-

Coming soon...

+
+ + + + + + + + +
diff --git a/src/style/app.css b/src/style/app.css index 99960b4a..7a1831fa 100644 --- a/src/style/app.css +++ b/src/style/app.css @@ -43,7 +43,7 @@ @layer base { body { - @apply my-[40px] flex flex-col items-center bg-cream text-base text-black; + @apply mt-[67px] flex flex-col items-center scroll-smooth bg-cream text-base text-black; } button { diff --git a/tailwind.config.js b/tailwind.config.js index 80b90809..cb95c6d1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -43,6 +43,7 @@ export default { sm: '0px', md: '900px', lg: '1300px', + short: { raw: '(max-height: 700px)' }, }, }, }; diff --git a/tests/test.ts b/tests/test.ts index 5328bd12..e73b7a82 100644 --- a/tests/test.ts +++ b/tests/test.ts @@ -1,6 +1,6 @@ import { expect, test } from '@playwright/test'; -test('index page has expected h1', async ({ page }) => { +test('index page has expected content', async ({ page }) => { await page.goto('/'); - await expect(page.getByRole('heading', { name: 'Welcome' })).toBeVisible(); + await expect(page.getByText('Build at a higher Frequency')).toBeDefined(); });