Compare commits

...

3 Commits

Author SHA1 Message Date
semantic-release-bot ddac9b361e chore(release): 0.1.0-develop.7 [skip ci]
# [0.1.0-develop.7](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.1.0-develop.6...v0.1.0-develop.7) (2023-08-13)

### Bug Fixes

* mobile layout on footer and message component ([5a8b20b](5a8b20b16e))
2023-08-13 09:27:43 +00:00
Juan Di Toro 5ce8fa7312 Merge branch 'develop' of git.lumeweb.com:LumeWeb/lumeweb.com into develop 2023-08-13 11:26:43 +02:00
Juan Di Toro 5a8b20b16e fix: mobile layout on footer and message component 2023-08-13 11:26:27 +02:00
6 changed files with 50 additions and 11 deletions

View File

@ -1,3 +1,10 @@
# [0.1.0-develop.7](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.1.0-develop.6...v0.1.0-develop.7) (2023-08-13)
### Bug Fixes
* mobile layout on footer and message component ([5a8b20b](https://git.lumeweb.com/LumeWeb/lumeweb.com/commit/5a8b20b16e1493d4a6238acd81718f8b500c1ac4))
# [0.1.0-develop.6](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.1.0-develop.5...v0.1.0-develop.6) (2023-08-13)

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@lumeweb/lumeweb.com",
"version": "0.1.0-develop.6",
"version": "0.1.0-develop.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@lumeweb/lumeweb.com",
"version": "0.1.0-develop.6",
"version": "0.1.0-develop.7",
"dependencies": {
"@astrojs/react": "^2.1.1",
"@astrojs/tailwind": "^3.1.1",

View File

@ -1,7 +1,7 @@
{
"name": "@lumeweb/lumeweb.com",
"type": "module",
"version": "0.1.0-develop.6",
"version": "0.1.0-develop.7",
"private": true,
"repository": {
"type": "git",

View File

@ -1,7 +1,10 @@
---
---
<section id="message" class="bg-primary py-16 px-40 space-y-4">
<section
id="message"
class="bg-primary py-16 px-10 md:px-20 xl:px-40 space-y-4"
>
<h2 class="text-3xl font-bold text-black font-display">
A message from Derrick
</h2>

View File

@ -2,7 +2,9 @@
import logo from "/src/assets/lume-logo.png";
---
<footer class="flex flex-row py-24 font-body mb-3 mx-40">
<footer
class="flex flex-col lg:flex-row py-24 font-body mb-3 mx-10 md:mx-20 xl:mx-40 max-w-screen"
>
<div class="flex-1">
<a href="/">
<img src={logo.src} class="w-36 mb-2" alt="Lume" />
@ -28,11 +30,11 @@ import logo from "/src/assets/lume-logo.png";
</svg>
contact@lumeweb.com
</a>
<div class="text-lg text-primary font-bold font-display mt-10">
<div class="text-lg text-primary font-bold font-display my-10">
Freedom. Privacy. <br />Ownership.
</div>
</div>
<div class="flex-1">
<div class="flex-1 my-5 lg:my-0">
<h5 class="text-3xl mb-3">General</h5>
<ul class="text-body font-body text-xl">
<li>
@ -43,7 +45,7 @@ import logo from "/src/assets/lume-logo.png";
</li>
</ul>
</div>
<div class="flex-1">
<div class="flex-1 my-5 lg:my-0">
<h5 class="text-3xl mb-3">Community</h5>
<ul class="text-body font-body text-xl">
<li>
@ -61,7 +63,7 @@ import logo from "/src/assets/lume-logo.png";
</li>
</ul>
</div>
<div class="flex-1">
<div class="flex-1 my-5 lg:my-0">
<h5 class="text-3xl mb-3">Ecosystem</h5>
<ul class="text-body font-body text-xl">
<li>
@ -69,7 +71,7 @@ import logo from "/src/assets/lume-logo.png";
</li>
</ul>
</div>
<div class="flex-1">
<div class="flex-1 my-5 lg:my-0">
<h5 class="text-3xl mb-3">Support Us</h5>
<ul class="text-body font-body text-xl">
<li>

View File

@ -42,7 +42,34 @@ function getActiveClass(linkView) {
class="hidden lg:hidden bg-black/40 w-screen h-screen fixed z-10 top-0 botton-0 right-0 left-0"
>
</div>
<button id="hamburger" class="z-30 text-4xl lg:hidden">☰</button>
<button id="hamburger" class="z-30 text-4xl lg:hidden">
<svg
width="24"
height="24"
viewBox="0 0 52 43"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1 1.06787H51.295"
stroke="white"
stroke-width="1.28"
stroke-linecap="round"
stroke-linejoin="round"></path>
<path
d="M1 21.5728H51.295"
stroke="white"
stroke-width="1.28"
stroke-linecap="round"
stroke-linejoin="round"></path>
<path
d="M1 42.0776H51.295"
stroke="white"
stroke-width="1.28"
stroke-linecap="round"
stroke-linejoin="round"></path>
</svg>
</button>
<script>
const navbarOverlayEl = document.getElementById("navbar-overlay");
const hamburgerEl = document.getElementById("hamburger");