Skip to content

Commit 7cb5ec2

Browse files
authored
Remove homepage feature illustrations (#2)
1 parent dcca524 commit 7cb5ec2

File tree

5 files changed

+71
-13
lines changed

5 files changed

+71
-13
lines changed

blog/2025-01-01-welcome.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: Welcome to the Solution Base blog
3+
tags: [announcement]
4+
---
5+
6+
We now have a home for project updates, feature announcements, and release notes. Check back for new posts as the project evolves.

docs/getting-started.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
id: getting-started
3+
title: Getting started
4+
sidebar_position: 2
5+
---
6+
7+
# Getting started
8+
9+
Follow these steps to run Solution Base locally and contribute to the documentation site.
10+
11+
## Prerequisites
12+
13+
- [Node.js](https://nodejs.org/) (see `package.json` for the supported version)
14+
- [npm](https://www.npmjs.com/)
15+
16+
## Install dependencies
17+
18+
From the project root, install required packages:
19+
20+
```bash
21+
npm install
22+
```
23+
24+
## Start the local dev server
25+
26+
Launch the Docusaurus development server:
27+
28+
```bash
29+
npm run start
30+
```
31+
32+
The site will be available at the URL printed in your terminal. Changes to docs and pages are hot-reloaded.
33+
34+
## Build for production
35+
36+
Generate the static site output to ensure docs and configuration are valid:
37+
38+
```bash
39+
npm run build
40+
```
41+
42+
Use this command before shipping changes to verify the documentation builds successfully.

docs/intro.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
id: intro
3+
title: Welcome to Solution Base
4+
sidebar_position: 1
5+
---
6+
7+
# Welcome to Solution Base
8+
9+
Solution Base houses the documentation, blog, and development resources for the project. Use the sidebar to explore topics or jump to specific guides.
10+
11+
## What you'll find
12+
13+
- Project overview and guiding principles.
14+
- Setup instructions for running the site locally.
15+
- Links to contribution guidelines and community resources.
16+
17+
## Quick links
18+
19+
- Navigate to **Getting started** to set up your local environment.
20+
- Visit the **Blog** from the top navigation bar for updates and releases.
21+
22+
Happy exploring!

src/components/HomepageFeatures/index.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@ import styles from './styles.module.css';
55

66
type FeatureItem = {
77
title: string;
8-
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
98
description: ReactNode;
109
};
1110

1211
const FeatureList: FeatureItem[] = [
1312
{
1413
title: 'Easy to Use',
15-
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
1614
description: (
1715
<>
1816
Docusaurus was designed from the ground up to be easily installed and
@@ -22,7 +20,6 @@ const FeatureList: FeatureItem[] = [
2220
},
2321
{
2422
title: 'Focus on What Matters',
25-
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
2623
description: (
2724
<>
2825
Docusaurus lets you focus on your docs, and we&apos;ll do the chores. Go
@@ -32,7 +29,6 @@ const FeatureList: FeatureItem[] = [
3229
},
3330
{
3431
title: 'Powered by React',
35-
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
3632
description: (
3733
<>
3834
Extend or customize your website layout by reusing React. Docusaurus can
@@ -42,12 +38,9 @@ const FeatureList: FeatureItem[] = [
4238
},
4339
];
4440

45-
function Feature({title, Svg, description}: FeatureItem) {
41+
function Feature({title, description}: FeatureItem) {
4642
return (
4743
<div className={clsx('col col--4')}>
48-
<div className="text--center">
49-
<Svg className={styles.featureSvg} role="img" />
50-
</div>
5144
<div className="text--center padding-horiz--md">
5245
<Heading as="h3">{title}</Heading>
5346
<p>{description}</p>

src/components/HomepageFeatures/styles.module.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,3 @@
44
padding: 2rem 0;
55
width: 100%;
66
}
7-
8-
.featureSvg {
9-
height: 200px;
10-
width: 200px;
11-
}

0 commit comments

Comments
 (0)