Skip to content

Commit c48c6f0

Browse files
authored
Update index.js
1 parent 42ec225 commit c48c6f0

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

src/pages/index.js

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
import React from 'react';
2-
import { Redirect } from '@docusaurus/router';
2+
import Layout from '@theme/Layout';
33

44
export default function Home() {
5-
return <Redirect to="/docs/pages/intro" />;
5+
return (
6+
<Layout
7+
title="SPID Protocol"
8+
description="Smart Packets. Structured. Voice-Ready.">
9+
<main style={{ padding: '3rem', textAlign: 'center' }}>
10+
<img src="/img/logo.png" alt="SPID Protocol Logo" style={{ width: 200, marginBottom: '2rem' }} />
11+
<h1 style={{ fontSize: '3rem', marginBottom: '1rem' }}>SPID Protocol</h1>
12+
<p style={{ fontSize: '1.25rem', marginBottom: '2rem' }}>
13+
We’re building the open standard for voice-first, structured communication.
14+
</p>
15+
<a href="/docs/intro">
16+
<button
17+
style={{
18+
padding: '1rem 2rem',
19+
fontSize: '1.1rem',
20+
backgroundColor: '#e63946',
21+
color: 'white',
22+
border: 'none',
23+
borderRadius: '8px',
24+
cursor: 'pointer',
25+
}}>
26+
🚀 Explore the Docs
27+
</button>
28+
</a>
29+
</main>
30+
</Layout>
31+
);
632
}
33+

0 commit comments

Comments
 (0)