Skip to content

Commit a7b67c0

Browse files
committed
BlueMatter logo everywhere, remove green dot, clean kicker text
1 parent ae5b3a0 commit a7b67c0

File tree

4 files changed

+13
-37
lines changed

4 files changed

+13
-37
lines changed

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const config: Config = {
7373
respectPrefersColorScheme: false,
7474
},
7575
navbar: {
76-
title: 'Bluematter',
76+
title: 'BlueMatter',
7777
items: [
7878
{
7979
type: 'docSidebar',

src/css/custom.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
font-weight: 700;
6161
font-size: 1rem;
6262
letter-spacing: -0.03em;
63-
text-transform: lowercase;
6463
}
6564

6665
/* Sidebar - clean dark */

src/pages/index.module.css

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -121,32 +121,13 @@
121121
max-width: 800px;
122122
}
123123

124-
.badge {
125-
display: inline-flex;
126-
align-items: center;
127-
gap: 0.5rem;
128-
padding: 0.4rem 1rem 0.4rem 0.7rem;
129-
border-radius: 100px;
130-
border: 1px solid rgba(255, 255, 255, 0.1);
131-
font-size: 0.72rem;
132-
font-weight: 600;
133-
letter-spacing: 0.08em;
124+
.kicker {
125+
font-size: 0.8rem;
126+
font-weight: 500;
127+
letter-spacing: 0.15em;
134128
text-transform: uppercase;
135-
color: rgba(255, 255, 255, 0.6);
136-
margin-bottom: 3rem;
137-
}
138-
139-
.badgeDot {
140-
width: 6px;
141-
height: 6px;
142-
border-radius: 50%;
143-
background: #22c55e;
144-
animation: pulse 2s ease infinite;
145-
}
146-
147-
@keyframes pulse {
148-
0%, 100% { opacity: 1; }
149-
50% { opacity: 0.4; }
129+
color: rgba(255, 255, 255, 0.35);
130+
margin: 0 0 2.5rem;
150131
}
151132

152133
.title {
@@ -426,7 +407,6 @@
426407
color: #fff;
427408
display: block;
428409
margin-bottom: 0.8rem;
429-
text-transform: lowercase;
430410
}
431411

432412
.footDesc {

src/pages/index.tsx

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ function Nav() {
2222
return (
2323
<nav className={styles.nav}>
2424
<Link to={useBaseUrl('/')} className={styles.navLogo}>
25-
bluematter
25+
BlueMatter
2626
</Link>
2727
<div className={styles.navLinks}>
2828
<Link to={useBaseUrl('/docs/intro')} className={styles.navLink}>Docs</Link>
2929
<Link to={useBaseUrl('/docs/spec/notation')} className={styles.navLink}>Spec</Link>
3030
<Link
3131
className={styles.navBtn}
32-
href="https://github.com/Chainscore/bluematter-docs"
32+
href="https://github.com/Chainscore/BlueMatter-docs"
3333
>
3434
GitHub
3535
<ArrowUpRight size={14} />
@@ -47,10 +47,7 @@ function Hero() {
4747
<div className={styles.grain} />
4848
<div className={styles.heroGlow} />
4949
<div className={styles.heroInner}>
50-
<div className={styles.badge}>
51-
<span className={styles.badgeDot} />
52-
Cardano Full-Node
53-
</div>
50+
<p className={styles.kicker}>Independent Cardano Full-Node</p>
5451
<h1 className={styles.title}>BlueMatter</h1>
5552
<p className={styles.sub}>
5653
C performance. Python clarity.
@@ -63,7 +60,7 @@ function Hero() {
6360
Read the Spec
6461
<ArrowRight size={16} />
6562
</Link>
66-
<Link className={styles.btnGhost} href="https://github.com/Chainscore/bluematter-docs">
63+
<Link className={styles.btnGhost} href="https://github.com/Chainscore/BlueMatter-docs">
6764
<GitBranch size={18} />
6865
Source
6966
</Link>
@@ -141,7 +138,7 @@ function Footer() {
141138
<footer className={styles.footer}>
142139
<div className={styles.footInner}>
143140
<div className={styles.footLeft}>
144-
<span className={styles.footLogo}>bluematter</span>
141+
<span className={styles.footLogo}>BlueMatter</span>
145142
<p className={styles.footDesc}>
146143
Cardano full-node combining C-backed cryptography with Python's readability. By Chainscore Labs.
147144
</p>
@@ -154,7 +151,7 @@ function Footer() {
154151
</div>
155152
<div className={styles.footCol}>
156153
<h4>Links</h4>
157-
<Link href="https://github.com/Chainscore/bluematter-docs">GitHub</Link>
154+
<Link href="https://github.com/Chainscore/BlueMatter-docs">GitHub</Link>
158155
<Link href="https://chainscore.xyz">Chainscore Labs</Link>
159156
</div>
160157
</div>

0 commit comments

Comments
 (0)