Skip to content

Commit 79bf181

Browse files
refactor: emergency shut down
1 parent bb4a2eb commit 79bf181

File tree

5 files changed

+559
-553
lines changed

5 files changed

+559
-553
lines changed

src/components/CustomStyles.astro

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ import 'swiper/css/pagination';
5959
--aw-color-text-heading: #083433;
6060
--aw-color-text-default: #083433;
6161
--aw-color-text-muted: #083433;
62-
--aw-color-bg-page: rgb(232 231 222);
62+
/* --aw-color-bg-page: rgb(232 231 222); */
63+
--aw-color-bg-page: #000000;
6364

6465
::selection {
6566
background-color: black;

src/config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
site:
2-
name: Qompa
2+
name:
33
site: 'https://qompa.io'
44
base: '/'
55
trailingSlash: false
@@ -9,14 +9,14 @@ site:
99
# Default SEO metadata
1010
metadata:
1111
title:
12-
default: Qompa
13-
template: '%s — Qompa'
14-
description: 'Transformamos a las empresas con soluciones financieras innovadoras basadas en Inteligencia Artificial'
12+
default:
13+
template: '%s — '
14+
description: ''
1515
robots:
1616
index: true
1717
follow: true
1818
openGraph:
19-
site_name: Qompa
19+
site_name:
2020
images:
2121
- url: '~/assets/images/default.png'
2222
width: 1200

src/layouts/PageLayout.astro

+1-9
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,5 @@ const { metadata } = Astro.props;
1515
---
1616

1717
<Layout metadata={metadata}>
18-
<slot name="header">
19-
<Header {...headerData} isSticky !showRssFeed showToggleTheme />
20-
</slot>
21-
<main>
22-
<slot />
23-
</main>
24-
<slot name="footer">
25-
<Footer {...footerData} />
26-
</slot>
18+
2719
</Layout>

0 commit comments

Comments
 (0)