Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove the hero images, for now #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ const config = {
title: 'Build local-first software',
tagline: 'Automerge is a library of data structures for building collaborative applications that work offline.',
url: 'https://automerge.github.io/',
baseUrl: '/docs/',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: '/docs/img/favicon.ico',
favicon: 'img/favicon.ico',
organizationName: 'automerge', // Usually your GitHub org/user name.
projectName: 'automerge', // Usually your repo name.

Expand Down Expand Up @@ -46,7 +46,7 @@ const config = {
title: 'Automerge',
logo: {
alt: 'Automerge logo',
src: '/docs/img/automerge.png',
src: 'img/automerge.png',
},
items: [
{
Expand Down
11 changes: 7 additions & 4 deletions src/components/HomepageFeatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,20 @@ function Feature({Svg, title, description}) {
</div>
);
}

export default function HomepageFeatures() {
return (
<section className={styles.features}>
/**
*
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
*/

export default function HomepageFeatures() {
return (
<section className={styles.features}>
</section>
);
}