Skip to content

Commit

Permalink
point configurator to main -- wont work until final changes
Browse files Browse the repository at this point in the history
removed hero images for landing page
added basic readme.md
  • Loading branch information
maz0r committed Feb 7, 2024
1 parent 2274aae commit eeaf5cb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This is the repository for the Armchair documentation site.

https://armchairheavyindustries.com/armchair-docs/
2 changes: 1 addition & 1 deletion src/app/configurator/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const getLength = (length) => {
}
}

const BASE_URI = 'https://raw.githubusercontent.com/Armchair-Engineering/Archetype/Experimental'
const BASE_URI = 'https://raw.githubusercontent.com/Armchair-Engineering/Archetype/main'

const getSelectedFiles = (selections, mods, useSpacer) => {
const files = []
Expand Down
20 changes: 10 additions & 10 deletions src/components/Hero.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import Image from 'next/image';
import clsx from 'clsx';

import atrocity from '../../public/atrocity.png';
import blackbird from '../../public/blackbird.png';
import breakneck from '../../public/breakneck.png';
import mantis from '../../public/mantis.png';
import mjolnir from '../../public/mjolnir.png';
import zephyr from '../../public/zephyr.png';
// import atrocity from '../../public/atrocity.png';
// import blackbird from '../../public/blackbird.png';
// import breakneck from '../../public/breakneck.png';
// import mantis from '../../public/mantis.png';
// import mjolnir from '../../public/mjolnir.png';
// import zephyr from '../../public/zephyr.png';

const gradient = `linear-gradient(
90deg,
Expand All @@ -30,7 +30,7 @@ export function Hero () {
<div className={clsx('w-full text-center lg:text-9xl text-7xl')}>
<h1 className={clsx('font-heading')}>Archetype</h1>
</div>
<div className={clsx('flex flex-row items-center gap-4 justify-between')}>
{/*<div className={clsx('flex flex-row items-center gap-4 justify-between')}>
<div>
<Image src={atrocity} alt="Atrocity" priority height={320} />
</div>
Expand All @@ -39,17 +39,17 @@ export function Hero () {
</div>
<div>
<Image src={breakneck} alt="Breakneck" priority height={320} />
</div>
</div>*/}
{/* <div>
<Image src={mantis} alt="Mantis" priority height={320} />
</div> */}
<div>
{/* <div>
<Image src={mjolnir} alt="Mjölnir" priority height={320} />
</div>
<div>
<Image src={zephyr} alt="Zephyr" priority height={320} />
</div>
</div>
</div>*/}
<div className={clsx('h-4')} style={{ backgroundImage: gradient }}>

</div>
Expand Down

0 comments on commit eeaf5cb

Please sign in to comment.