From 5df807b8bdd7a6656a4c5931965a9956dbb15598 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Thu, 6 Jun 2024 17:32:16 +0300 Subject: [PATCH] fix header / hero --- public/assets/images/logo.svg | 1 + src/assets/images/logo.svg | 1 + src/components/Logo.astro | 7 ++--- src/components/widgets/Note.astro | 2 +- src/config.yaml | 10 +++---- src/pages/about.astro | 6 ++-- src/pages/index.astro | 49 +++++++++++++++---------------- src/pages/partners.astro | 2 +- src/pages/technology.astro | 2 +- tailwind.config.cjs | 7 +++++ 10 files changed, 46 insertions(+), 41 deletions(-) create mode 100644 public/assets/images/logo.svg create mode 100644 src/assets/images/logo.svg diff --git a/public/assets/images/logo.svg b/public/assets/images/logo.svg new file mode 100644 index 0000000..3b064ba --- /dev/null +++ b/public/assets/images/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/logo.svg b/src/assets/images/logo.svg new file mode 100644 index 0000000..3b064ba --- /dev/null +++ b/src/assets/images/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/Logo.astro b/src/components/Logo.astro index 0da1ce1..0158131 100644 --- a/src/components/Logo.astro +++ b/src/components/Logo.astro @@ -2,8 +2,7 @@ import { SITE } from 'astrowind:config'; --- - - 🌎 {SITE?.name} + + Site Logo + {SITE?.name} diff --git a/src/components/widgets/Note.astro b/src/components/widgets/Note.astro index 9de443d..db45f71 100644 --- a/src/components/widgets/Note.astro +++ b/src/components/widgets/Note.astro @@ -5,7 +5,7 @@ import { Icon } from 'astro-icon/components';
- Project Internet Capacity: INCA: The Internet as intended.
diff --git a/src/config.yaml b/src/config.yaml index 4b40758..62a722e 100644 --- a/src/config.yaml +++ b/src/config.yaml @@ -1,5 +1,5 @@ site: - name: Project Internet Capacity + name: INCA site: 'https://threefold.io' base: '/' trailingSlash: false @@ -9,14 +9,14 @@ site: # Default SEO metadata metadata: title: - default: Project Internet Capacity - template: '%s — Project Internet Capacity' - description: "\U0001F680 Project Internet Capacity is the decentralized autonomous cloud for everyone." + default: INCA + template: '%s — INCA' + description: "\U0001F680 INCA is the decentralized autonomous cloud for everyone." robots: index: true follow: true openGraph: - site_name: Project INCA + site_name: INCA images: - url: '~/assets/images/inca_background.png' width: 1200 diff --git a/src/pages/about.astro b/src/pages/about.astro index 2e312ab..c10c50b 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -24,12 +24,12 @@ const metadata = { }} > - Project Internet Capacity
is the culmulation of years
of work by + INCA
is the culmulation of years
of work by ThreeFold
- Project Internet Capacity is the fourth generation of the ThreeFold Grid. Our technology is rock solid and has been running in production mode for years now on the main network. We wouldn't be here without our amazing community and its members who keep on evolving with us. This project will always have planet and people first in mind. + INCA is the fourth generation of the ThreeFold Grid. Our technology is rock solid and has been running in production mode for years now on the main network. We wouldn't be here without our amazing community and its members who keep on evolving with us. This project will always have planet and people first in mind. @@ -188,7 +188,7 @@ const metadata = { - - - Welcome To - Project
-

- - Compute
- is the currency
- of the future...

-
+ + +
+ + Site Logo + +
+

+ Project + INternet CApacity +

+

+ Compute is the Currency of the Future +

- - - - - - Internet Capacity, DePIN Cloud - -
Compute is the currency of the future...
- Earn rewards by providing Internet Capacity to the world!
- -
+

+ We are a community-driven, open-source project that has built a self-healing and autonomous cloud engine allowing anyone to become a cloud service provider.
+

+
+
+
@@ -146,7 +143,7 @@ const metadata = { classes={{ container: 'max-w-6xl' }} items={[ { - title: 'Why is the Project Internet Capacity necessary?', + title: 'Why is the INCA necessary?', description: "There is a cyber pandemic going on and there is a war for your attention! The cloud and Internet can be what it was always meant to be: for the people and peer-to-peer. The grid offers the possibility for anyone to own their share of the Internet.", }, diff --git a/src/pages/partners.astro b/src/pages/partners.astro index f5dd9ac..14bbe65 100644 --- a/src/pages/partners.astro +++ b/src/pages/partners.astro @@ -10,7 +10,7 @@ import Features2 from '~/components/widgets/Features2.astro'; Expand the Grid with Us - We have the technology for a planetary-scale alternative
to mainstream cloud and current monopolistic markets.

Project Internet Capacity is the Unbreakable Internet. + We have the technology for a planetary-scale alternative
to mainstream cloud and current monopolistic markets.

INCA is the Unbreakable Internet.
diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 32b3139..1d139eb 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -17,8 +17,15 @@ module.exports = { serif: ['var(--aw-font-serif, ui-serif)', ...defaultTheme.fontFamily.serif], heading: ['var(--aw-font-heading, ui-sans-serif)', ...defaultTheme.fontFamily.sans], }, + letterSpacing: { + widest: '.25em', + custom: '.002em', + xs: '.0005em', + }, + }, }, plugins: [typographyPlugin], darkMode: 'class', }; + -- 2.40.1