Skip to content

Commit

Permalink
feat: edit some descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Feb 17, 2024
1 parent 856c3e4 commit a43d651
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
3 changes: 2 additions & 1 deletion src/components/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ const FeatureList: FeatureItem[] = [
icon: '🌍',
description: (
<>
Works on Deno, Bun, or Node.js. The same code runs on all platforms.
The focus will always be for Node.js, but Athenna also works on Deno and Bun.
The same code runs on all platforms.
</>
),
},
Expand Down
12 changes: 4 additions & 8 deletions src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}

.clip {
background: webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff);;
background: webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
Expand Down Expand Up @@ -67,20 +67,16 @@
}

.heroBanner {
padding: 14rem 5rem;
padding: 10rem 0;
}

.heroTitle {
font-weight: bold !important;
font-weight: bold;
font-size: 56px;
}

.heroGradientTitle {
font-weight: bold !important;
font-size: 56px;
background: linear-gradient(135deg, #9580ff 0, #80ffea 100%) !important;
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
font-size: 56px !important;
}

.heroParagraph {
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import React from 'react'
import clsx from 'clsx'
import Layout from '@theme/Layout'
import Link from '@docusaurus/Link'
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'
import styles from './index.module.css'
import Features from '../components/features'
import clsx from 'clsx'

function Header() {
return (
<header className={styles.heroBanner}>
<div className={styles.container}>
<div className={styles.main}>
<h1 className={styles.heroGradientTitle}>Athenna</h1>
<h1 className={clsx("navbar__title", styles.heroGradientTitle)}>Athenna</h1>
<h1 className={styles.heroTitle}>Fast, Expressive, Elegant, For Artisans</h1>
<p className={styles.heroParagraph}>One foundation for multiple applications</p>
<div className={styles.actions}>
Expand Down

0 comments on commit a43d651

Please sign in to comment.