Skip to content

fractalbits-labs/fractalbits-website

Repository files navigation

FractalBits Website

Landing page and blog for FractalBits - High-Performance S3-Compatible Object Storage.

Live at: https://fractalbits.com

Tech Stack

Development

# Install dependencies
npm install

# Start dev server
npm run dev

# Build for production
npm run build

# Preview production build
npm run preview

Project Structure

src/
  components/     # Reusable Astro components
  content/
    blog/         # Blog posts (.mdx files)
    config.ts     # Content collection schema
  layouts/        # Page layouts
  pages/          # Route pages
  styles/         # Global CSS
public/           # Static assets

Adding Blog Posts

Create a new .mdx file in src/content/blog/:

---
title: "Your Post Title"
description: "Brief description of the post"
pubDate: 2025-12-04
author: "Author Name"
tags: ["tag1", "tag2"]
---

Your content here. You can use JSX components!

import MyComponent from '../../components/MyComponent.astro';

<MyComponent />

Deployment

Automatically deployed to GitHub Pages on push to main branch via GitHub Actions.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published