mirror of
https://github.com/arthur-pbty/blocnote.git
synced 2026-06-03 23:36:28 +02:00
63e6c64077
- Created a new SVG for the Open Graph image (og-image.svg) with a gradient background and text elements. - Added Vercel logo SVG (vercel.svg) for deployment branding. - Introduced a window icon SVG (window.svg) for UI representation. - Initialized TypeScript configuration file (tsconfig.json) with strict settings and module resolution for a React project.
29 lines
1.7 KiB
XML
29 lines
1.7 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 630">
|
|
<defs>
|
|
<linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#1e3a5f"/>
|
|
<stop offset="50%" style="stop-color:#1a1a2e"/>
|
|
<stop offset="100%" style="stop-color:#0f0f17"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="1200" height="630" fill="url(#bg)"/>
|
|
<!-- Icon -->
|
|
<g transform="translate(300,200)">
|
|
<rect x="0" y="0" width="100" height="130" rx="12" fill="white" opacity="0.9"/>
|
|
<rect x="16" y="22" width="68" height="5" rx="2.5" fill="#3b82f6" opacity="0.4"/>
|
|
<rect x="16" y="35" width="50" height="5" rx="2.5" fill="#3b82f6" opacity="0.3"/>
|
|
<rect x="16" y="48" width="60" height="5" rx="2.5" fill="#3b82f6" opacity="0.25"/>
|
|
<rect x="16" y="61" width="40" height="5" rx="2.5" fill="#3b82f6" opacity="0.2"/>
|
|
</g>
|
|
<!-- Title -->
|
|
<text x="430" y="255" font-family="system-ui, -apple-system, sans-serif" font-size="64" font-weight="800" fill="white" letter-spacing="-1">BlocNote</text>
|
|
<!-- Subtitle -->
|
|
<text x="430" y="305" font-family="system-ui, -apple-system, sans-serif" font-size="22" fill="#9ca3af">Bloc-notes Markdown en ligne • Gratuit</text>
|
|
<!-- Features -->
|
|
<text x="300" y="440" font-family="system-ui, -apple-system, sans-serif" font-size="18" fill="#60a5fa">✦ Markdown</text>
|
|
<text x="500" y="440" font-family="system-ui, -apple-system, sans-serif" font-size="18" fill="#60a5fa">✦ Sauvegarde auto</text>
|
|
<text x="740" y="440" font-family="system-ui, -apple-system, sans-serif" font-size="18" fill="#60a5fa">✦ Mode sombre</text>
|
|
<!-- Border accent -->
|
|
<rect x="0" y="620" width="1200" height="10" fill="#3b82f6"/>
|
|
</svg>
|