Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.

fabrknt/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

32 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Fabrknt Website

Official website for Fabrknt β€” compliance, privacy, and data infrastructure for DeFi.

πŸš€ Quick Deploy

Deploy to Vercel (Recommended)

Deploy with Vercel

# Install Vercel CLI
npm i -g vercel

# Deploy
vercel

Deploy to Netlify

Deploy to Netlify

# Install Netlify CLI
npm i -g netlify-cli

# Deploy
netlify deploy --prod

Deploy to GitHub Pages

  1. Push to your repository
  2. Go to Settings β†’ Pages
  3. Select the branch and root folder
  4. Save and wait for deployment

πŸ“ Structure

β”œβ”€β”€ 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

🎨 Customization

Update Content

Edit index.html to customize:

  • Hero section title and description
  • Features and their descriptions
  • Quick start code examples
  • Use cases
  • Footer links

Update Styling

Edit assets/css/styles.css to customize:

  • Color scheme (:root CSS variables)
  • Typography
  • Spacing and layout
  • Responsive breakpoints

Color Variables

--primary: #8B5CF6;        /* Primary purple */
--secondary: #10B981;      /* Secondary green */
--accent: #F59E0B;         /* Accent orange */
--bg-primary: #0F172A;     /* Dark background */
--text-primary: #F8FAFC;   /* Light text */

Add Images/Logo

  1. Add your images to assets/images/
  2. Update references in index.html
  3. Recommended formats: SVG for logos, WebP for images

πŸ› οΈ Development

Local Development

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:8000

Then visit: http://localhost:8000

Testing

  • Test responsive design at different screen sizes
  • Check all links work correctly
  • Verify code copy buttons function
  • Test on different browsers (Chrome, Firefox, Safari)

🌐 Domain Configuration

Configure fabrknt.com

For Vercel:

  1. Go to your project settings
  2. Add custom domain: fabrknt.com
  3. Add DNS records:
    Type: A
    Name: @
    Value: 76.76.21.21
    
    Type: CNAME
    Name: www
    Value: cname.vercel-dns.com
    

For Netlify:

  1. Go to Site settings β†’ Domain management
  2. Add custom domain: fabrknt.com
  3. Follow Netlify's DNS instructions

For Cloudflare (Recommended):

  1. Add your domain to Cloudflare
  2. Point to your hosting provider
  3. Enable:
    • SSL/TLS (Full mode)
    • Auto Minify (JS, CSS, HTML)
    • Brotli compression
    • Always Use HTTPS

πŸ“Š Analytics (Optional)

Add Google Analytics

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>

Add Plausible Analytics (Privacy-friendly)

<script defer data-domain="fabrknt.com" src="https://plausible.io/js/script.js"></script>

πŸ”§ Features

  • βœ… 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

πŸ“ SEO

The website includes:

  • Semantic HTML5
  • Meta descriptions
  • Open Graph tags for social media
  • Proper heading hierarchy
  • Alt text for images (when added)

Update SEO Tags

In index.html, update:

<meta name="description" content="Your description">
<meta property="og:title" content="Your title">
<meta property="og:description" content="Your description">

πŸš€ Performance

Optimizations included:

  • Minimal CSS/JS (no frameworks)
  • Font preloading
  • Efficient CSS animations
  • Lazy loading ready
  • Modern CSS Grid and Flexbox

Further Optimizations

  1. Add a favicon: Place favicon.ico in root
  2. Optimize images: Use WebP format, compress images
  3. Add a manifest: Create manifest.json for PWA support
  4. Enable caching: Configure via hosting provider

🀝 Contributing

To update the website:

  1. Edit the files in this repository
  2. Test locally
  3. Commit changes
  4. Deploy automatically via Git integration

πŸ“„ License

MIT License - see LICENSE for details


Built by Fabrknt in Tokyo

About

Official website for Fabrknt - Web3 Business Intelligence Platform and SDKs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors