Compare commits
3 Commits
v0.2.5-dev
...
v0.2.5-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | 4787cceed2 | |
Juan Di Toro | 10290cf09b | |
Juan Di Toro | a07e74f190 |
|
@ -1,3 +1,10 @@
|
||||||
|
## [0.2.5-develop.5](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.2.5-develop.4...v0.2.5-develop.5) (2023-08-15)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* improved hero image ([a07e74f](https://git.lumeweb.com/LumeWeb/lumeweb.com/commit/a07e74f1901b22dc2f502699c8a96a9bda4a8cf3))
|
||||||
|
|
||||||
## [0.2.5-develop.4](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.2.5-develop.3...v0.2.5-develop.4) (2023-08-15)
|
## [0.2.5-develop.4](https://git.lumeweb.com/LumeWeb/lumeweb.com/compare/v0.2.5-develop.3...v0.2.5-develop.4) (2023-08-15)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@lumeweb/lumeweb.com",
|
"name": "@lumeweb/lumeweb.com",
|
||||||
"version": "0.2.5-develop.4",
|
"version": "0.2.5-develop.5",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@lumeweb/lumeweb.com",
|
"name": "@lumeweb/lumeweb.com",
|
||||||
"version": "0.2.5-develop.4",
|
"version": "0.2.5-develop.5",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/react": "^2.1.1",
|
"@astrojs/react": "^2.1.1",
|
||||||
"@astrojs/tailwind": "^3.1.1",
|
"@astrojs/tailwind": "^3.1.1",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@lumeweb/lumeweb.com",
|
"name": "@lumeweb/lumeweb.com",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.2.5-develop.4",
|
"version": "0.2.5-develop.5",
|
||||||
"private": true,
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
After Width: | Height: | Size: 364 KiB |
Binary file not shown.
After Width: | Height: | Size: 692 KiB |
|
@ -9,14 +9,19 @@ import WebComparison from "../components/Home/WebComparison/WebComparison.astro"
|
||||||
import Socials from "../components/Home/Socials/Socials.astro";
|
import Socials from "../components/Home/Socials/Socials.astro";
|
||||||
import CTO from "../components/Home/CTO/CTO.astro";
|
import CTO from "../components/Home/CTO/CTO.astro";
|
||||||
import Message from "../components/Home/Message/Message.astro";
|
import Message from "../components/Home/Message/Message.astro";
|
||||||
import bg from "../assets/home-hero-bg.webp";
|
import bg from "../assets/main-page-hero.png";
|
||||||
|
import bgSmall from "../assets/main-page-hero@0.75x.png";
|
||||||
|
import bgSmaller from "../assets/main-page-hero@0.5x.png";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout view="home" title="Lume Web - Your Open Web">
|
<Layout view="home" title="Lume Web - Your Open Web">
|
||||||
<img
|
<img
|
||||||
class="absolute -z-10 -right-[250px] top-[250px] object-contain w-[1250px] max-w-none"
|
class="absolute -z-10 -right-[150px] top-[50px] md:-right-[200px] md:-top-[100px] xl:-right-[100px] xl:-top-[100px] object-contain w-[500px] md:w-[800px] xl:w-[1000px] max-w-none"
|
||||||
|
srcset={`${bg.src} 1250w, ${bgSmall.src} 1000w, ${bgSmaller.src} 500w`}
|
||||||
|
sizes="(max-width: 1024px) 1000px, 1250px"
|
||||||
src={bg.src}
|
src={bg.src}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Typewriter />
|
<Typewriter />
|
||||||
<Vision />
|
<Vision />
|
||||||
<Web3 />
|
<Web3 />
|
||||||
|
|
Loading…
Reference in New Issue