|
| 1 | +import React from 'react'; |
| 2 | +import Head from '@docusaurus/Head'; |
| 3 | + |
| 4 | +const fonts = [ |
| 5 | + { name: 'Rock Salt', family: "'Rock Salt', cursive", note: 'Raw scratchy signature' }, |
| 6 | + { name: 'Permanent Marker', family: "'Permanent Marker', cursive", note: 'Bold marker pen' }, |
| 7 | + { name: 'Sedgwick Ave Display', family: "'Sedgwick Ave Display', cursive", note: 'Loose brush hand' }, |
| 8 | + { name: 'Finger Paint', family: "'Finger Paint', cursive", note: 'Thick finger-painted' }, |
| 9 | + { name: 'Rubik Wet Paint', family: "'Rubik Wet Paint', system-ui", note: 'Dripping wet paint' }, |
| 10 | + { name: 'Rubik Distressed', family: "'Rubik Distressed', system-ui", note: 'Rough distressed' }, |
| 11 | + { name: 'Londrina Sketch', family: "'Londrina Sketch', cursive", note: 'Sketched outline' }, |
| 12 | + { name: 'Zeyada', family: "'Zeyada', cursive", note: 'Fast scribble' }, |
| 13 | + { name: 'Caveat', family: "'Caveat', cursive", note: 'Clean handwritten' }, |
| 14 | +]; |
| 15 | + |
| 16 | +export default function Brand(): React.ReactNode { |
| 17 | + return ( |
| 18 | + <> |
| 19 | + <Head> |
| 20 | + <title>BlueMatter Brand</title> |
| 21 | + <html data-theme="dark" className="landing-page" /> |
| 22 | + </Head> |
| 23 | + <div style={{ |
| 24 | + background: '#000', |
| 25 | + color: '#fff', |
| 26 | + minHeight: '100vh', |
| 27 | + padding: '4rem 3rem', |
| 28 | + fontFamily: 'Inter, sans-serif', |
| 29 | + }}> |
| 30 | + <p style={{ |
| 31 | + fontSize: '0.7rem', |
| 32 | + letterSpacing: '0.2em', |
| 33 | + textTransform: 'uppercase' as const, |
| 34 | + color: 'rgba(255,255,255,0.3)', |
| 35 | + marginBottom: '1rem', |
| 36 | + }}>LOGO EXPLORATION</p> |
| 37 | + <h1 style={{ |
| 38 | + fontSize: '2rem', |
| 39 | + fontWeight: 700, |
| 40 | + letterSpacing: '-0.03em', |
| 41 | + marginBottom: '4rem', |
| 42 | + }}>Pick the one that hits.</h1> |
| 43 | + |
| 44 | + {fonts.map((f) => ( |
| 45 | + <div key={f.name} style={{ |
| 46 | + borderBottom: '1px solid rgba(255,255,255,0.06)', |
| 47 | + padding: '3rem 0', |
| 48 | + }}> |
| 49 | + <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'flex-end', marginBottom: '0.5rem' }}> |
| 50 | + <span style={{ fontSize: '0.7rem', color: 'rgba(255,255,255,0.25)', letterSpacing: '0.1em', textTransform: 'uppercase' as const }}>{f.name}</span> |
| 51 | + <span style={{ fontSize: '0.75rem', color: 'rgba(255,255,255,0.2)' }}>{f.note}</span> |
| 52 | + </div> |
| 53 | + |
| 54 | + {/* White on black */} |
| 55 | + <div style={{ |
| 56 | + fontFamily: f.family, |
| 57 | + fontSize: 'clamp(3rem, 8vw, 6rem)', |
| 58 | + lineHeight: 1, |
| 59 | + color: '#fff', |
| 60 | + marginBottom: '1.5rem', |
| 61 | + }}> |
| 62 | + BlueMatter |
| 63 | + </div> |
| 64 | + |
| 65 | + {/* With gradient */} |
| 66 | + <div style={{ |
| 67 | + fontFamily: f.family, |
| 68 | + fontSize: 'clamp(3rem, 8vw, 6rem)', |
| 69 | + lineHeight: 1, |
| 70 | + background: 'linear-gradient(135deg, #fff 0%, #4d8bff 60%, #1a3a8a 100%)', |
| 71 | + WebkitBackgroundClip: 'text', |
| 72 | + WebkitTextFillColor: 'transparent', |
| 73 | + marginBottom: '1.5rem', |
| 74 | + }}> |
| 75 | + BlueMatter |
| 76 | + </div> |
| 77 | + |
| 78 | + {/* Black on white card */} |
| 79 | + <div style={{ |
| 80 | + background: '#fff', |
| 81 | + borderRadius: '12px', |
| 82 | + padding: '2rem 2.5rem', |
| 83 | + display: 'inline-block', |
| 84 | + }}> |
| 85 | + <div style={{ |
| 86 | + fontFamily: f.family, |
| 87 | + fontSize: 'clamp(2rem, 5vw, 3.5rem)', |
| 88 | + lineHeight: 1, |
| 89 | + color: '#000', |
| 90 | + }}> |
| 91 | + BlueMatter |
| 92 | + </div> |
| 93 | + </div> |
| 94 | + |
| 95 | + {/* Small / navbar size */} |
| 96 | + <div style={{ marginTop: '1.5rem', display: 'flex', gap: '3rem', alignItems: 'center' }}> |
| 97 | + <span style={{ |
| 98 | + fontFamily: f.family, |
| 99 | + fontSize: '1.4rem', |
| 100 | + color: '#fff', |
| 101 | + }}>BlueMatter</span> |
| 102 | + <span style={{ |
| 103 | + fontFamily: f.family, |
| 104 | + fontSize: '1.4rem', |
| 105 | + color: '#000', |
| 106 | + background: '#fff', |
| 107 | + padding: '0.3rem 1rem', |
| 108 | + borderRadius: '6px', |
| 109 | + }}>BlueMatter</span> |
| 110 | + </div> |
| 111 | + </div> |
| 112 | + ))} |
| 113 | + </div> |
| 114 | + </> |
| 115 | + ); |
| 116 | +} |
0 commit comments