From d627f6a2a4dfd95b813db030860b007e15a4ae4b Mon Sep 17 00:00:00 2001 From: Sarah <144068104+iamawatermelo@users.noreply.github.com> Date: Fri, 6 Dec 2024 21:50:12 +0000 Subject: [PATCH 1/9] mini --- src/lib/components/EmailLanding.svelte | 11 -- src/lib/components/Page.svelte | 21 ++- src/routes/mini/+page.svelte | 200 +++++++++++++++++++++++++ wak.toml | 15 ++ 4 files changed, 234 insertions(+), 13 deletions(-) create mode 100644 src/routes/mini/+page.svelte create mode 100644 wak.toml diff --git a/src/lib/components/EmailLanding.svelte b/src/lib/components/EmailLanding.svelte index f06c646..5a9b3f7 100644 --- a/src/lib/components/EmailLanding.svelte +++ b/src/lib/components/EmailLanding.svelte @@ -37,15 +37,4 @@ form { margin: 1em 0; } - - button { - height: 3em; - padding: 0 2em; - color: rgb(var(--fg)); - font-weight: 500; - background: none; - - @include style.hover; - @include style.box-texture('$lib/textures/inputbox.svg'); - } diff --git a/src/lib/components/Page.svelte b/src/lib/components/Page.svelte index 0bbfa08..fecb67e 100644 --- a/src/lib/components/Page.svelte +++ b/src/lib/components/Page.svelte @@ -1,18 +1,20 @@ {title} | Revolution -
+
{@render children?.()}
diff --git a/src/routes/mini/+page.svelte b/src/routes/mini/+page.svelte new file mode 100644 index 0000000..b19efc6 --- /dev/null +++ b/src/routes/mini/+page.svelte @@ -0,0 +1,200 @@ + + + +
+
+
+ +
+ +
+
+ +
+
+ +
+
+

What?

+ +

i am pissing myself

+
+
+

What?

+ +

i am pissing myself

+
+
+

What?

+ +

i am pissing myself

+
+
+

What?

+ +

i am pissing myself

+
+
+

What?

+ +

i am pissing myself

+
+
+

What?

+ +

i am pissing myself

+
+
+

What?

+ +

i am pissing myself

+
+
+

What?

+ +

i am pissing myself

+
+
+

What?

+ +

i am pissing myself

+
+ +
+
+ + diff --git a/wak.toml b/wak.toml new file mode 100644 index 0000000..090cba8 --- /dev/null +++ b/wak.toml @@ -0,0 +1,15 @@ +# https://github.com/iamawatermelo/wakapi-anyide v0.6.7 + +[meta] +version = 1 +watchers = ['files'] + +[files] +include = ["*"] # files to include in tracking +exclude = [] # files to exclude in tracking +exclude_files = [".gitignore"] # files whose contents will be used to exclude other files from tracking +exclude_binary_files = true # whether to ignore binary files +# language_mapping = {".kicad_sch" = "Kicad Schematic"} # custom language mapping + +[project] +name = "revolution" # your project name \ No newline at end of file From 6ae9aa50a686b43edaf95b634993963308c10123 Mon Sep 17 00:00:00 2001 From: Sarah <144068104+iamawatermelo@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:02:53 +0000 Subject: [PATCH 2/9] promote mini --- src/routes/+layout.svelte | 1 + src/routes/+page.svelte | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 948723d..70d27f8 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -22,6 +22,7 @@ Revolution
@@ -101,6 +106,15 @@ position: relative; min-height: 100vh; overflow-x: clip; + + .top-info { + width: 100%; + padding: 1.5em; + + h2 { + font-size: 1em; + } + } .track-container { display: flex; From 83d1246703084342791acae482fa08bd866d231b Mon Sep 17 00:00:00 2001 From: Sarah <144068104+iamawatermelo@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:11:09 +0000 Subject: [PATCH 3/9] h --- src/lib/components/Page.svelte | 2 +- src/routes/mini/+page.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/Page.svelte b/src/lib/components/Page.svelte index fecb67e..b2fd040 100644 --- a/src/lib/components/Page.svelte +++ b/src/lib/components/Page.svelte @@ -29,7 +29,7 @@ filter: #{"grayscale(50%) invert()"}; } - main :global(button) { + main :global(button), main :global(.style-button) { height: 3em; padding: 0 2em; color: rgb(var(--fg)); diff --git a/src/routes/mini/+page.svelte b/src/routes/mini/+page.svelte index b19efc6..684ba93 100644 --- a/src/routes/mini/+page.svelte +++ b/src/routes/mini/+page.svelte @@ -13,7 +13,7 @@

We're hosting a small event in London lorem ipsum sit dolor amet I hate web development


- + Sign Up Yes Do It Now Right Away Immediately
From 356cc9c0f1c1ddebec0f5bc0c0600e47644a9b80 Mon Sep 17 00:00:00 2001 From: Sarah <144068104+iamawatermelo@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:12:47 +0000 Subject: [PATCH 4/9] h --- src/lib/components/Page.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/components/Page.svelte b/src/lib/components/Page.svelte index b2fd040..e2af4f5 100644 --- a/src/lib/components/Page.svelte +++ b/src/lib/components/Page.svelte @@ -30,6 +30,7 @@ } main :global(button), main :global(.style-button) { + display: block; height: 3em; padding: 0 2em; color: rgb(var(--fg)); From ca7c691dc41b33d9b65c2ade037410d097eef544 Mon Sep 17 00:00:00 2001 From: Sarah <144068104+iamawatermelo@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:25:02 +0000 Subject: [PATCH 5/9] crime --- src/lib/components/Page.svelte | 5 +++++ src/routes/mini/+page.svelte | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/lib/components/Page.svelte b/src/lib/components/Page.svelte index e2af4f5..493cd7c 100644 --- a/src/lib/components/Page.svelte +++ b/src/lib/components/Page.svelte @@ -31,6 +31,11 @@ main :global(button), main :global(.style-button) { display: block; + text-decoration: none; + font-weight: bold; + display: flex; + align-items: center; + text-align: center; height: 3em; padding: 0 2em; color: rgb(var(--fg)); diff --git a/src/routes/mini/+page.svelte b/src/routes/mini/+page.svelte index 684ba93..9113660 100644 --- a/src/routes/mini/+page.svelte +++ b/src/routes/mini/+page.svelte @@ -30,6 +30,7 @@

What?

i am pissing myself

+

i am pissing myself

What?

@@ -193,6 +194,7 @@ width: 64em; padding: 2em 2em; box-shadow: 4px 8px 8px 0 rgba(0, 0, 0, 0.2); + height: 32em; @include style.box-texture('$lib/textures/containerbox.svg'); } From 3ebd6eb6b06da0a983fb69c480bd513a072f8dbd Mon Sep 17 00:00:00 2001 From: Sarah <144068104+iamawatermelo@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:32:51 +0000 Subject: [PATCH 6/9] button --- src/lib/components/Page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Page.svelte b/src/lib/components/Page.svelte index 493cd7c..1c4a139 100644 --- a/src/lib/components/Page.svelte +++ b/src/lib/components/Page.svelte @@ -35,7 +35,7 @@ font-weight: bold; display: flex; align-items: center; - text-align: center; + justify-content: center; height: 3em; padding: 0 2em; color: rgb(var(--fg)); From 5250675ca742840edc10bb5d713002f7ba7e14d4 Mon Sep 17 00:00:00 2001 From: Sarah <144068104+iamawatermelo@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:34:19 +0000 Subject: [PATCH 7/9] button --- src/lib/components/Page.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/components/Page.svelte b/src/lib/components/Page.svelte index 1c4a139..2a1b512 100644 --- a/src/lib/components/Page.svelte +++ b/src/lib/components/Page.svelte @@ -39,7 +39,6 @@ height: 3em; padding: 0 2em; color: rgb(var(--fg)); - font-weight: 500; background: none; @include style.hover; From 00b5837e0496cd16f7cec82d18853ad1fadfb089 Mon Sep 17 00:00:00 2001 From: Sarah <144068104+iamawatermelo@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:35:50 +0000 Subject: [PATCH 8/9] button --- src/lib/components/Page.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/components/Page.svelte b/src/lib/components/Page.svelte index 2a1b512..4f3a0f4 100644 --- a/src/lib/components/Page.svelte +++ b/src/lib/components/Page.svelte @@ -37,6 +37,7 @@ align-items: center; justify-content: center; height: 3em; + width: 16em; padding: 0 2em; color: rgb(var(--fg)); background: none; From 8d8e9bf7a240e0c1d4314eb49690beabd51d3807 Mon Sep 17 00:00:00 2001 From: Dillon Barnes Date: Fri, 6 Dec 2024 22:37:11 +0000 Subject: [PATCH 9/9] COPY COPY COPY --- src/routes/mini/+page.svelte | 69 +++++++++++++----------------------- 1 file changed, 25 insertions(+), 44 deletions(-) diff --git a/src/routes/mini/+page.svelte b/src/routes/mini/+page.svelte index 9113660..83aba8a 100644 --- a/src/routes/mini/+page.svelte +++ b/src/routes/mini/+page.svelte @@ -11,9 +11,9 @@

Revolution
mini

-

We're hosting a small event in London lorem ipsum sit dolor amet I hate web development

+

We're hosting a small hackathon in London on January 4th


- Sign Up Yes Do It Now Right Away Immediately + Sign up
@@ -27,52 +27,33 @@
-

What?

- -

i am pissing myself

-

i am pissing myself

+

Where is it?

+

We don't know yet, but we're looking at venues in London Zones 1-3. We'll let you know as soon as we have a confirmed venue.

-

What?

- -

i am pissing myself

+

When is it?

+

January 4th, 2025. The exact times will depend on the venue, but will be roughly 9am-5pm.

-

What?

- -

i am pissing myself

+

What can I build?

+

Anything! As long as it follows the theme that is.

-
-

What?

- -

i am pissing myself

-
-
-

What?

- -

i am pissing myself

-
-
-

What?

- -

i am pissing myself

-
-
-

What?

- -

i am pissing myself

-
-
-

What?

- -

i am pissing myself

-
-
-

What?

- -

i am pissing myself

-
- +
+

What do I need to bring?

+

Yourself, a photo ID (student ID card is fine!), a smile, and your laptop! Food and drink will be provided.

+
+
+

How much does it cost?

+

Revolution (mini) is free to attend! You will need to pay for transport though.

+
+
+

What about allergies?

+

If you have allergies or other medical conditions, let us know on the signup form and we'll do our best to accomodate them.

+
+
+

What is the theme?

+

You'll find out on the day! We're not spoiling it for you, but it may be somewhat related to the Industrial Revolution. 👀

+
@@ -194,7 +175,7 @@ width: 64em; padding: 2em 2em; box-shadow: 4px 8px 8px 0 rgba(0, 0, 0, 0.2); - height: 32em; + height: 16em; @include style.box-texture('$lib/textures/containerbox.svg'); }