Follow these steps to get your site up and running:
npm install to install dependenciesnpm run dev to start the development serverEdit styles/custom.css to customize the color scheme:
:root {
--bs-primary: #558AAB; /* Medium blue */
--bs-secondary: #7EADC9; /* Light blue */
--bs-success: #5A8F6A; /* Sage green */
--bs-warning: #C1A980; /* Tan/beige */
--bs-danger: #D94A3D; /* Muted red */
--bs-dark: #353F38; /* Dark gray-green */
}Page files are located in the app/ directory:
app/page.js - Home pageapp/about/page.js - About pageapp/pricing/page.js - Pricing pageapp/docs/page.js - This pageTo export as static HTML:
npm run build
Files will be in the out/ directory, ready to host anywhere.
This boilerplate uses Bootstrap 5 components. Visit Bootstrap Documentation for a complete component reference.