Official website for Fabrknt β compliance, privacy, and data infrastructure for DeFi.
# Install Vercel CLI
npm i -g vercel
# Deploy
vercel# Install Netlify CLI
npm i -g netlify-cli
# Deploy
netlify deploy --prod- Push to your repository
- Go to Settings β Pages
- Select the branch and root folder
- Save and wait for deployment
βββ index.html # Main landing page
βββ docs.html # Documentation page (optional)
βββ assets/
β βββ css/
β β βββ styles.css # All styles
β βββ js/
β β βββ main.js # Interactive features
β βββ images/ # Images and logos
βββ vercel.json # Vercel configuration
βββ netlify.toml # Netlify configuration
βββ .nojekyll # GitHub Pages configuration
βββ README.md # This file
Edit index.html to customize:
- Hero section title and description
- Features and their descriptions
- Quick start code examples
- Use cases
- Footer links
Edit assets/css/styles.css to customize:
- Color scheme (
:rootCSS variables) - Typography
- Spacing and layout
- Responsive breakpoints
--primary: #8B5CF6; /* Primary purple */
--secondary: #10B981; /* Secondary green */
--accent: #F59E0B; /* Accent orange */
--bg-primary: #0F172A; /* Dark background */
--text-primary: #F8FAFC; /* Light text */- Add your images to
assets/images/ - Update references in
index.html - Recommended formats: SVG for logos, WebP for images
Simply open index.html in your browser, or use a local server:
# Using Python
python -m http.server 8000
# Using Node.js
npx serve
# Using PHP
php -S localhost:8000Then visit: http://localhost:8000
- Test responsive design at different screen sizes
- Check all links work correctly
- Verify code copy buttons function
- Test on different browsers (Chrome, Firefox, Safari)
- Go to your project settings
- Add custom domain:
fabrknt.com - Add DNS records:
Type: A Name: @ Value: 76.76.21.21 Type: CNAME Name: www Value: cname.vercel-dns.com
- Go to Site settings β Domain management
- Add custom domain:
fabrknt.com - Follow Netlify's DNS instructions
- Add your domain to Cloudflare
- Point to your hosting provider
- Enable:
- SSL/TLS (Full mode)
- Auto Minify (JS, CSS, HTML)
- Brotli compression
- Always Use HTTPS
Add before </head> in index.html:
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXXXXX');
</script><script defer data-domain="fabrknt.com" src="https://plausible.io/js/script.js"></script>- β Fully responsive design
- β Modern, clean UI
- β Dark theme optimized for tech audience
- β Fast loading (no external dependencies except fonts)
- β SEO optimized with meta tags
- β Code syntax highlighting
- β Copy-to-clipboard functionality
- β Smooth scroll navigation
- β Mobile menu
- β Animated elements on scroll
The website includes:
- Semantic HTML5
- Meta descriptions
- Open Graph tags for social media
- Proper heading hierarchy
- Alt text for images (when added)
In index.html, update:
<meta name="description" content="Your description">
<meta property="og:title" content="Your title">
<meta property="og:description" content="Your description">Optimizations included:
- Minimal CSS/JS (no frameworks)
- Font preloading
- Efficient CSS animations
- Lazy loading ready
- Modern CSS Grid and Flexbox
- Add a favicon: Place
favicon.icoin root - Optimize images: Use WebP format, compress images
- Add a manifest: Create
manifest.jsonfor PWA support - Enable caching: Configure via hosting provider
To update the website:
- Edit the files in this repository
- Test locally
- Commit changes
- Deploy automatically via Git integration
MIT License - see LICENSE for details
Built by Fabrknt in Tokyo