diff --git a/assets/css/main.css b/assets/css/main.css index 5fafece..ebcdac9 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -41,6 +41,16 @@ /* Shadow */ --shadow-button: 0 2px 4px 0 rgba(0, 0, 0, 0.25); + + /* Spacing */ + --spacing-32: 2rem; /* 32px */ + --spacing-25.6: 25.688rem; /* 411px */ + --spacing-44.8: 44.813rem; /* 717px */ + + /* Font sizes */ + --text-32: 2rem; /* 32px */ + --text-40: 2.5rem; /* 40px */ + } @@ -164,22 +174,15 @@ body footer { top: 100dvh; } -header, main { - margin: 0 var(--layout-padding-x, 32px); +body { + margin: 0 var(--layout-padding-x, 2rem); } + html { scroll-behavior: smooth; } -.min-h-screen-header { - min-height: calc(100dvh - 15rem); -} - -.max-h-sidebar { - max-height: calc(100dvh - 8rem); -} - .body-overflow-hidden { overflow: hidden; } @@ -191,4 +194,8 @@ html { var(--Color-base--color-consumo-base, rgba(242, 140, 140, 0.10)) 155.76923489570618deg, var(--Color-base--color-aula-base, rgba(92, 170, 204, 0.10)) 233.65383625030518deg, rgba(57, 182, 137, 0.10) 304.61538791656494deg), var(--Background--bg-light, #F9F4F2); -} \ No newline at end of file +} + +.bg-gradient-conic-hero { + background: conic-gradient(from 185deg at 9.57% 56.1%, var(--Color-base--color-certifica-base, rgba(202, 240, 63, 0.10)) 53.653846979141235deg, var(--Color-base--color-consumo-base, rgba(242, 140, 140, 0.10)) 155.76923489570618deg, var(--Color-base--color-aula-base, rgba(92, 170, 204, 0.10)) 233.65383625030518deg, rgba(57, 182, 137, 0.10) 304.61538791656494deg), var(--Background--bg-light, #F9F4F2); +} diff --git a/components/ButtonCTA.vue b/components/ButtonCTA.vue index 6e7a638..2b13e22 100644 --- a/components/ButtonCTA.vue +++ b/components/ButtonCTA.vue @@ -18,7 +18,7 @@ export default { }, size: { type: String, - default: "md", + default: "lg", } }, computed: { diff --git a/components/HeroHome.vue b/components/HeroHome.vue index 12cd1e4..d4178fa 100644 --- a/components/HeroHome.vue +++ b/components/HeroHome.vue @@ -1,21 +1,62 @@ \ No newline at end of file diff --git a/data/es/index.json b/data/es/index.json index a452f79..adc234c 100644 --- a/data/es/index.json +++ b/data/es/index.json @@ -2,8 +2,18 @@ { "component": "HeroHome", "props": { - "title": "Bienvenido al Kit", - "subtitle": "Todo para la economía social" + "id": "hero-home", + "title": "Kit de herramientas para el desarrollo sostenible de las entidades de economía social.", + "subtitle": "Encuentra recursos prácticos, autoevaluaciones, formación y espacios de cooperación para transformar tu entidad.", + "button": { + "label": "explora las herramientas", + "link": "#herramientas", + "color": "button" + }, + "shapes": { + "shape_1": "formas-fondo-negativo-2.png", + "shape_2": "formas-fondo-negativo-1.png" + } } } ] diff --git a/public/img/formas-fondo-negativo-1.png b/public/img/formas-fondo-negativo-1.png new file mode 100644 index 0000000..07d1ee8 Binary files /dev/null and b/public/img/formas-fondo-negativo-1.png differ diff --git a/public/img/formas-fondo-negativo-2.png b/public/img/formas-fondo-negativo-2.png new file mode 100644 index 0000000..f5e1fe7 Binary files /dev/null and b/public/img/formas-fondo-negativo-2.png differ