File tree Expand file tree Collapse file tree 1 file changed +29
-2
lines changed
Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change 11import React from 'react' ;
2- import { Redirect } from '@docusaurus/router ' ;
2+ import Layout from '@theme/Layout ' ;
33
44export 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+
You can’t perform that action at this time.
0 commit comments