From 01e0bb823d45b3cdbbc915030f9befb0d7d41b1e Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 10:23:53 -0500 Subject: [PATCH 01/29] base work --- src/routes/docs/+page.svelte | 17 ++++++++++++++++- static/developer-portal.svg | 1 + 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 static/developer-portal.svg diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index 42b00557..529217e1 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -1 +1,16 @@ -
+ + + + + + + + + diff --git a/static/developer-portal.svg b/static/developer-portal.svg new file mode 100644 index 00000000..5ee0b215 --- /dev/null +++ b/static/developer-portal.svg @@ -0,0 +1 @@ + \ No newline at end of file From c47af4edc36c5d5b9ba881744a191c10d2736d31 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 11:15:18 -0500 Subject: [PATCH 02/29] set top page with placeholder image --- src/components/Sections/SectionDocs.svelte | 41 ++++++++++++++++++++++ src/routes/docs/+page.svelte | 40 ++++++++++++++++----- 2 files changed, 72 insertions(+), 9 deletions(-) create mode 100644 src/components/Sections/SectionDocs.svelte diff --git a/src/components/Sections/SectionDocs.svelte b/src/components/Sections/SectionDocs.svelte new file mode 100644 index 00000000..abbf6859 --- /dev/null +++ b/src/components/Sections/SectionDocs.svelte @@ -0,0 +1,41 @@ + + + +
+
+ +

+ Build with Frequency +

+
+ +

+ Better with You +

+
+

+ Everything here is open source. Our development roadmap is focussed on our mission of reclaiming the social + graph for the common good and is guided by our principles. Infrastructure for the Next Generation Decentralized + Social Internet. +

+

+ If this is your first visit, the DSNP whitepape is a good place to start. Where you go after depends on your + goals: the nagivation panel gives some useful entry points. +

+
+
+ + .01 +
+ +
+
diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index 529217e1..1ea1b13a 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -1,16 +1,38 @@ - - - - - +
+
+ + + + +
+
+ +
+
From bc56c764c9a6fa42e1d6ea59d3acd850b68951e9 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 11:17:54 -0500 Subject: [PATCH 03/29] cleanup --- src/routes/docs/+page.svelte | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index 1ea1b13a..79634e16 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -3,22 +3,8 @@ import SectionDocs from '../../components/Sections/SectionDocs.svelte'; import SectionNavigation from '../../components/Sections/SectionNavigation.svelte'; import Sections from '../../components/Sections/Sections.svelte'; - import Header from '../../components/Header/Header.svelte'; $: section = 1; - - const brightBlue = '#5E69FF'; - const cream = '#FEFAF3'; - - const logoMap = new Map([ - [1, { logo: brightBlue, nav: 'navy' }], - [2, { logo: cream, nav: 'cream' }], - [3, { logo: brightBlue, nav: 'cream' }], - [4, { logo: brightBlue, nav: 'navy' }], - [5, { logo: cream, nav: 'cream' }], - ]); - - // Section navigation titles for Aria const sectionTitles = ['Introduction']; From cb93f0fc6a855e6019f8ab188c6b59037b2331de Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 13:52:49 -0500 Subject: [PATCH 04/29] align with about page --- src/routes/docs/+layout.svelte | 13 +++---------- src/routes/docs/+page.svelte | 25 ++++++++++++++++++++----- 2 files changed, 23 insertions(+), 15 deletions(-) diff --git a/src/routes/docs/+layout.svelte b/src/routes/docs/+layout.svelte index e46f8e2b..0252a394 100644 --- a/src/routes/docs/+layout.svelte +++ b/src/routes/docs/+layout.svelte @@ -1,15 +1,8 @@ - -
-
-
- -
+
+
diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index 79634e16..e267fadf 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -3,14 +3,32 @@ import SectionDocs from '../../components/Sections/SectionDocs.svelte'; import SectionNavigation from '../../components/Sections/SectionNavigation.svelte'; import Sections from '../../components/Sections/Sections.svelte'; - + import { page } from '$app/stores'; + import Header from '../../components/Header/Header.svelte'; $: section = 1; const sectionTitles = ['Introduction']; + const brightBlue = '#5E69FF'; + const cream = '#FEFAF3'; + + const logoMap = new Map([ + [1, { logo: brightBlue, nav: 'navy' }], + [2, { logo: cream, nav: 'cream' }], + [3, { logo: brightBlue, nav: 'cream' }], + [4, { logo: brightBlue, nav: 'navy' }], + [5, { logo: cream, nav: 'cream' }], + ]); + + // Section navigation titles for Aria + + $: logoHex = logoMap.get(section)?.logo; + $: navColor = logoMap.get(section)?.nav; + $: baseUrl = $page.url.protocol + '//' + $page.url.host;
- +
+ @@ -19,6 +37,3 @@
- - From 8ae7fbbe1de5df0ad50d8079c30ed4710f0be794 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 13:55:12 -0500 Subject: [PATCH 05/29] correction --- src/routes/docs/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index e267fadf..96a6c570 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -28,7 +28,7 @@
- + From 480a61934e128077490032184b117632639faed3 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 15:09:06 -0500 Subject: [PATCH 06/29] styling --- src/components/Sections/SectionDocs.svelte | 4 ++-- src/routes/docs/+page.svelte | 2 +- src/style/app.css | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/Sections/SectionDocs.svelte b/src/components/Sections/SectionDocs.svelte index abbf6859..7963fb81 100644 --- a/src/components/Sections/SectionDocs.svelte +++ b/src/components/Sections/SectionDocs.svelte @@ -11,12 +11,12 @@ >
-

+

Build with Frequency

-

+

Better with You

diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index 96a6c570..023d6609 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -11,7 +11,7 @@ const cream = '#FEFAF3'; const logoMap = new Map([ - [1, { logo: brightBlue, nav: 'navy' }], + [1, { logo: cream, nav: 'navy' }], [2, { logo: cream, nav: 'cream' }], [3, { logo: brightBlue, nav: 'cream' }], [4, { logo: brightBlue, nav: 'navy' }], diff --git a/src/style/app.css b/src/style/app.css index 24567f29..8307cc64 100644 --- a/src/style/app.css +++ b/src/style/app.css @@ -26,6 +26,9 @@ .title-100 { @apply font-title leading-[1] tracking-wide sm:text-[55px] md:text-[75px] lg:text-[100px]; } + .title-101 { + @apply font-title leading-[1] tracking-wide sm:text-[40px] md:text-[55px] lg:text-[75px]; + } .subtitle { @apply font-semibold sm:text-lg md:text-lg lg:text-xl; } From 4cdc273a9c3ab3dd68ea2b71a228c6d09c1b898e Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 15:34:32 -0500 Subject: [PATCH 07/29] lint --- src/routes/docs/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index f41c95cf..2e23e7dd 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -21,7 +21,7 @@ $: logoHex = logoMap.get(section)?.logo; $: navColor = logoMap.get(section)?.nav; - $: baseUrl = $page.url.protocol + '//' + $page.url.host; + // $: baseUrl = $page.url.protocol + '//' + $page.url.host;
From f485a3a2ca4561e43323199ce310978f185a9fb8 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 15:37:05 -0500 Subject: [PATCH 08/29] lint --- src/routes/docs/+page.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index 2e23e7dd..c924324d 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -2,7 +2,6 @@ import SectionDocs from '../../components/Sections/SectionDocs.svelte'; import SectionNavigation from '../../components/Sections/SectionNavigation.svelte'; import Sections from '../../components/Sections/Sections.svelte'; - import { page } from '$app/stores'; import Header from '../../components/Header/Header.svelte'; $: section = 1; const sectionTitles = ['Introduction']; From a7cdc4e05888cd955e047369da336b46e440b382 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 16:34:52 -0500 Subject: [PATCH 09/29] addd placeholder section image --- src/components/Sections/SectionDefaultWave.svelte | 3 +++ src/components/Sections/SectionDocs.svelte | 13 ++++--------- src/lib/assets/placeholder-portal.svg | 1 + static/developer-portal.svg | 1 - 4 files changed, 8 insertions(+), 10 deletions(-) create mode 100644 src/components/Sections/SectionDefaultWave.svelte create mode 100644 src/lib/assets/placeholder-portal.svg delete mode 100644 static/developer-portal.svg diff --git a/src/components/Sections/SectionDefaultWave.svelte b/src/components/Sections/SectionDefaultWave.svelte new file mode 100644 index 00000000..c47c80b3 --- /dev/null +++ b/src/components/Sections/SectionDefaultWave.svelte @@ -0,0 +1,3 @@ +
diff --git a/src/components/Sections/SectionDocs.svelte b/src/components/Sections/SectionDocs.svelte index 99bb16de..e339734b 100644 --- a/src/components/Sections/SectionDocs.svelte +++ b/src/components/Sections/SectionDocs.svelte @@ -1,9 +1,8 @@ + import SectionDefaultWave from './SectionDefaultWave.svelte'; +
- - .01 -
- +
+
diff --git a/src/lib/assets/placeholder-portal.svg b/src/lib/assets/placeholder-portal.svg new file mode 100644 index 00000000..5bc56e06 --- /dev/null +++ b/src/lib/assets/placeholder-portal.svg @@ -0,0 +1 @@ + diff --git a/static/developer-portal.svg b/static/developer-portal.svg deleted file mode 100644 index 5ee0b215..00000000 --- a/static/developer-portal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From 6a50ee1a88d53a706abc3d955cd67afc26ac5060 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Wed, 30 Oct 2024 16:36:34 -0500 Subject: [PATCH 10/29] lint --- src/components/Sections/SectionDefaultWave.svelte | 2 +- src/components/Sections/SectionDocs.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Sections/SectionDefaultWave.svelte b/src/components/Sections/SectionDefaultWave.svelte index c47c80b3..09208d7e 100644 --- a/src/components/Sections/SectionDefaultWave.svelte +++ b/src/components/Sections/SectionDefaultWave.svelte @@ -1,3 +1,3 @@
diff --git a/src/components/Sections/SectionDocs.svelte b/src/components/Sections/SectionDocs.svelte index e339734b..9b3029db 100644 --- a/src/components/Sections/SectionDocs.svelte +++ b/src/components/Sections/SectionDocs.svelte @@ -2,7 +2,7 @@ import SectionWrapper from './SectionWrapper.svelte'; import SlideIn from '../SlideIn.svelte'; import SectionDefaultWave from './SectionDefaultWave.svelte'; - +
Date: Thu, 31 Oct 2024 08:39:53 -0500 Subject: [PATCH 11/29] improve image placeholder --- src/components/Sections/SectionDefaultWave.svelte | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/Sections/SectionDefaultWave.svelte b/src/components/Sections/SectionDefaultWave.svelte index 09208d7e..1fcc1587 100644 --- a/src/components/Sections/SectionDefaultWave.svelte +++ b/src/components/Sections/SectionDefaultWave.svelte @@ -1,3 +1,12 @@ +
+ + +
+
From 3bed3f494a858a62434dda03ba4394bc7be4d03c Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 09:39:10 -0500 Subject: [PATCH 12/29] remove sections nesting and contains docs stuff in docs --- src/components/Sections/SectionDocs.svelte | 36 ------------------- src/routes/docs/+page.svelte | 12 +++---- src/routes/docs/components/DocsBody.svelte | 33 +++++++++++++++++ .../docs/components/Placeholder.svelte} | 0 4 files changed, 37 insertions(+), 44 deletions(-) delete mode 100644 src/components/Sections/SectionDocs.svelte create mode 100644 src/routes/docs/components/DocsBody.svelte rename src/{components/Sections/SectionDefaultWave.svelte => routes/docs/components/Placeholder.svelte} (100%) diff --git a/src/components/Sections/SectionDocs.svelte b/src/components/Sections/SectionDocs.svelte deleted file mode 100644 index 9b3029db..00000000 --- a/src/components/Sections/SectionDocs.svelte +++ /dev/null @@ -1,36 +0,0 @@ - - - -
-
- -

- Build with Frequency -

-
- -

- Better with You -

-
-

- Everything here is open source. Our development roadmap is focussed on our mission of reclaiming the social - graph for the common good and is guided by our principles. Infrastructure for the Next Generation Decentralized - Social Internet. -

-

- If this is your first visit, the DSNP whitepape is a good place to start. Where you go after depends on your - goals: the nagivation panel gives some useful entry points. -

-
-
-
- -
-
diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index c924324d..792dd6b1 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -1,10 +1,7 @@ + +
+
+ +

+ Build with Frequency +

+
+ +

+ Better with You +

+
+

+ Everything here is open source. Our development roadmap is focussed on our mission of reclaiming the social graph + for the common good and is guided by our principles. Infrastructure for the Next Generation Decentralized Social + Internet. +

+

+ If this is your first visit, the DSNP whitepape is a good place to start. Where you go after depends on your + goals: the nagivation panel gives some useful entry points. +

+
+
+
+ +
diff --git a/src/components/Sections/SectionDefaultWave.svelte b/src/routes/docs/components/Placeholder.svelte similarity index 100% rename from src/components/Sections/SectionDefaultWave.svelte rename to src/routes/docs/components/Placeholder.svelte From eae336755487497c314439e2bbeb6ead260ed68e Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 09:42:30 -0500 Subject: [PATCH 13/29] remove unused style --- src/style/app.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/style/app.css b/src/style/app.css index 8307cc64..24567f29 100644 --- a/src/style/app.css +++ b/src/style/app.css @@ -26,9 +26,6 @@ .title-100 { @apply font-title leading-[1] tracking-wide sm:text-[55px] md:text-[75px] lg:text-[100px]; } - .title-101 { - @apply font-title leading-[1] tracking-wide sm:text-[40px] md:text-[55px] lg:text-[75px]; - } .subtitle { @apply font-semibold sm:text-lg md:text-lg lg:text-xl; } From ee78267a2f479c27e1bc90ccb744825556a90be5 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 10:59:37 -0500 Subject: [PATCH 14/29] remove image from mobile view --- src/routes/docs/components/Placeholder.svelte | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/routes/docs/components/Placeholder.svelte b/src/routes/docs/components/Placeholder.svelte index 1fcc1587..799e0420 100644 --- a/src/routes/docs/components/Placeholder.svelte +++ b/src/routes/docs/components/Placeholder.svelte @@ -1,8 +1,3 @@ - -
-
Date: Thu, 31 Oct 2024 11:36:49 -0500 Subject: [PATCH 15/29] improve design for small screen --- src/routes/docs/components/DocsBody.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index af621ce0..2f04d9ce 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -4,7 +4,7 @@
From 747d820a23f59afe161352ec9b716775fae866ad Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 11:41:31 -0500 Subject: [PATCH 16/29] aling indentation --- src/routes/docs/components/DocsBody.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index 2f04d9ce..888b02ef 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -4,7 +4,7 @@
From 29e92ba082e18793551192f26bee0e185e1e1004 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 11:43:06 -0500 Subject: [PATCH 17/29] set same header colors across --- src/routes/docs/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index 792dd6b1..c31eb57b 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -6,7 +6,7 @@ const cream = '#FEFAF3'; const logoMap = new Map([ - [1, { logo: cream, nav: 'navy' }], + [1, { logo: brightBlue, nav: 'navy' }], [2, { logo: cream, nav: 'cream' }], [3, { logo: brightBlue, nav: 'cream' }], [4, { logo: brightBlue, nav: 'navy' }], From 5c60e088fc1a528603a3a6bc98cfbfb6f444d47b Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 13:34:31 -0500 Subject: [PATCH 18/29] remove views --- src/routes/docs/components/DocsBody.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index 888b02ef..86fb4ca9 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -17,12 +17,12 @@ Better with You

-

+

Everything here is open source. Our development roadmap is focussed on our mission of reclaiming the social graph for the common good and is guided by our principles. Infrastructure for the Next Generation Decentralized Social Internet.

-

+

If this is your first visit, the DSNP whitepape is a good place to start. Where you go after depends on your goals: the nagivation panel gives some useful entry points.

From 61e9f0b38ed10bec2ff7d911cb63b5d63d9ac589 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 13:36:16 -0500 Subject: [PATCH 19/29] need to constrain view --- src/routes/docs/components/DocsBody.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index 86fb4ca9..888b02ef 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -17,12 +17,12 @@ Better with You

-

+

Everything here is open source. Our development roadmap is focussed on our mission of reclaiming the social graph for the common good and is guided by our principles. Infrastructure for the Next Generation Decentralized Social Internet.

-

+

If this is your first visit, the DSNP whitepape is a good place to start. Where you go after depends on your goals: the nagivation panel gives some useful entry points.

From 8ba7af0808491920d6d3e249b202613ecb0bf775 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 13:56:21 -0500 Subject: [PATCH 20/29] simple render --- src/routes/docs/+layout.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/+layout.svelte b/src/routes/docs/+layout.svelte index b3b76eee..fa104edc 100644 --- a/src/routes/docs/+layout.svelte +++ b/src/routes/docs/+layout.svelte @@ -2,7 +2,7 @@ import { Footer } from '@frequency-chain/style-guide'; -
+
From f1af4e44ee17e215939f9537f59c120eeb822daa Mon Sep 17 00:00:00 2001 From: Puneet Saraswat <61435908+saraswatpuneet@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:18:23 -0500 Subject: [PATCH 21/29] Update src/routes/docs/components/DocsBody.svelte Co-authored-by: Joe Caputo --- src/routes/docs/components/DocsBody.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index 888b02ef..aef0ad28 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -23,8 +23,8 @@ Internet.

- If this is your first visit, the DSNP whitepape is a good place to start. Where you go after depends on your - goals: the nagivation panel gives some useful entry points. + If this is your first visit, the DSNP whitepaper is a good place to start. Where you go after depends on your + goals: the navigation panel gives some useful entry points.

From a816e405f4670f66a5989eb657263c02b8f3a45f Mon Sep 17 00:00:00 2001 From: Puneet Saraswat <61435908+saraswatpuneet@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:18:41 -0500 Subject: [PATCH 22/29] Update src/routes/docs/components/DocsBody.svelte Co-authored-by: Joe Caputo --- src/routes/docs/components/DocsBody.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index aef0ad28..fe12e0ec 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -18,7 +18,7 @@

- Everything here is open source. Our development roadmap is focussed on our mission of reclaiming the social graph + Everything here is open source. Our development roadmap is focused on our mission of reclaiming the social graph for the common good and is guided by our principles. Infrastructure for the Next Generation Decentralized Social Internet.

From 47649727ca58d569c1a94046dd6653e863357566 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 14:38:40 -0500 Subject: [PATCH 23/29] remove parts --- src/routes/docs/+page.svelte | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index c31eb57b..2eec319c 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -21,10 +21,8 @@
-
-
-
- -
+
+
+
From 7d161eca6cedf13c298ed03b669d6a80b83f0851 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 14:42:05 -0500 Subject: [PATCH 24/29] remove outer scope --- src/routes/docs/+page.svelte | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index 2eec319c..c87e633b 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -20,9 +20,7 @@ // $: baseUrl = $page.url.protocol + '//' + $page.url.host; -
-
-
- -
+
+
+
From 90aa32ec09bf7114451a4eebda51c85c74668a2f Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 15:11:04 -0500 Subject: [PATCH 25/29] set page layout --- src/routes/docs/+layout.svelte | 11 +++++++++-- src/routes/docs/+page.svelte | 19 ------------------- 2 files changed, 9 insertions(+), 21 deletions(-) diff --git a/src/routes/docs/+layout.svelte b/src/routes/docs/+layout.svelte index fa104edc..df924a72 100644 --- a/src/routes/docs/+layout.svelte +++ b/src/routes/docs/+layout.svelte @@ -1,8 +1,15 @@ -
- +
+
+
+ +
diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index c87e633b..c1361f8d 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -1,26 +1,7 @@ -
From cd28d9e079c7a7ffdf693e9dff50b50b0f3710c8 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 16:00:01 -0500 Subject: [PATCH 26/29] cleanups for cleaner less wavy layout --- src/routes/docs/+page.svelte | 4 +- src/routes/docs/components/DocsBody.svelte | 43 ++++++++----------- src/routes/docs/components/Placeholder.svelte | 7 +-- 3 files changed, 19 insertions(+), 35 deletions(-) diff --git a/src/routes/docs/+page.svelte b/src/routes/docs/+page.svelte index c1361f8d..652a5c78 100644 --- a/src/routes/docs/+page.svelte +++ b/src/routes/docs/+page.svelte @@ -2,6 +2,4 @@ import DocsBody from './components/DocsBody.svelte'; -
- -
+ diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index fe12e0ec..36309d71 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -1,33 +1,24 @@ -
-
- -

- Build with Frequency -

-
- -

- Better with You +

+
+
+ +
+
+

Build with Frequency

+

Better with You

+

+ Everything here is open source. Our development roadmap is focused on our mission of reclaiming the social graph + for the common good and is guided by our principles. Infrastructure for the Next Generation Decentralized Social + Internet.

- -

- Everything here is open source. Our development roadmap is focused on our mission of reclaiming the social graph - for the common good and is guided by our principles. Infrastructure for the Next Generation Decentralized Social - Internet. -

-

- If this is your first visit, the DSNP whitepaper is a good place to start. Where you go after depends on your - goals: the navigation panel gives some useful entry points. -

+

+ If this is your first visit, the DSNP whitepaper is a good place to start. Where you go after depends on your + goals: the navigation panel gives some useful entry points. +

+
-
- -
diff --git a/src/routes/docs/components/Placeholder.svelte b/src/routes/docs/components/Placeholder.svelte index 799e0420..cd482f20 100644 --- a/src/routes/docs/components/Placeholder.svelte +++ b/src/routes/docs/components/Placeholder.svelte @@ -1,7 +1,2 @@ -
-
+
From fc79ea8850539ef3d916943a4b37e708cb9b3cce Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 16:14:05 -0500 Subject: [PATCH 27/29] align top down --- src/routes/docs/components/DocsBody.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index 36309d71..f36e3b86 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -2,9 +2,9 @@ import Placeholder from './Placeholder.svelte'; -
-
-
+
+
+
From f580dd558bc3d0a3ecbd21a1c45c31aa2de99368 Mon Sep 17 00:00:00 2001 From: Puneet Saraswat Date: Thu, 31 Oct 2024 16:19:35 -0500 Subject: [PATCH 28/29] render at laptopsize --- src/routes/docs/components/DocsBody.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/docs/components/DocsBody.svelte b/src/routes/docs/components/DocsBody.svelte index f36e3b86..913b31ca 100644 --- a/src/routes/docs/components/DocsBody.svelte +++ b/src/routes/docs/components/DocsBody.svelte @@ -4,7 +4,7 @@
-