You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
4.8 KiB

3 years ago
import Head from 'next/head';
import styles from '../styles/Showcase.module.css';
3 years ago
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faTractor } from '@fortawesome/free-solid-svg-icons'
import { faBatteryFull } from '@fortawesome/free-solid-svg-icons'
import { faHandshake } from '@fortawesome/free-solid-svg-icons'
import { faMoneyBillWave } from '@fortawesome/free-solid-svg-icons'
import { faForward } from '@fortawesome/free-solid-svg-icons'
import { faStream } from '@fortawesome/free-solid-svg-icons'
import { faQuoteLeft } from '@fortawesome/free-solid-svg-icons'
import { faQuoteRight } from '@fortawesome/free-solid-svg-icons'
3 years ago
export default function Showcase() {
return (
<div className={"page " + styles.showcase}>
<Head>
<title>{process.env.NEXT_PUBLIC_NAME} | Showcase</title>
</Head>
<section className="container">
<article className="content">
<section>
3 years ago
<h2 className={"mt-reset"}> Highlighted clients</h2>
<h5>
{`
Take a look at some of our happy past clients and the websites we built for them.
`}
</h5>
3 years ago
</section>
<section className={styles.showcaseClient}>
<div>
<h3>🏘 Larum Nidis</h3>
<p>{`
This site was built with Wordpress in 2019 for a Dutch client.
It is designed to mostly be a one-pager design, but can be extended to have more pages with ease.
`}</p>
3 years ago
<p>🌍 Visit <a href="https://larumnidis.nl/" target="_blank">laurmnidis.nl</a></p>
3 years ago
</div>
<div>
<img src="/img/larumnidis.png" />
</div>
</section>
<section className={styles.showcaseClient}>
<div>
<h3> Life Centre Livingston</h3>
<p>{`
This site was made in 2018 with Wordpress for a local church and has many features like galleries, calendar,
blogging and file uploads.
`}</p>
3 years ago
<p>🌍 Visit <a href="https://lifecentrelivingston.com/" target="_blank">lifecentrelivingston.com</a></p>
3 years ago
</div>
<div>
<img src="/img/lifecentrelivingston.png" />
</div>
</section>
<section className={styles.showcaseClient}>
<div>
3 years ago
<h3>🦊 Trick The Fox</h3>
<p>
<FontAwesomeIcon icon={faQuoteLeft} size="1x" style={{color: "darkgray"}} />
{" The site is amazing, the work that went into it is incredible. "}
{" The look and small details make it so amazing. "}
{" They were always there to answer any questions I had and were happy to change the things I wanted. "}
<FontAwesomeIcon icon={faQuoteRight} size="1x" style={{color: "darkgray"}} />
</p>
<p>🌍 Visit <a href="https://trickthefox.com/" target="_blank">trickthefox.com</a></p>
3 years ago
</div>
<div>
3 years ago
<img src="/img/trickthefox.png" />
3 years ago
</div>
</section>
{/* <hr/>
<section>
<h2>🏗 Other experiences and projects</h2>
<h5>{`
In our every day lives we come across shortcomings or needs in technology, and sometimes we create our own solutions for them.
Sometimes we believe that these solutions could help more people and decide to release them publicly so that anyone can use them.
These applications also help us further showcase our quality and abilities to potential clients.
They are not ready for use yet, but you can still read more about them below.
`}</h5>
{`Maker, Picto Designer, Flame, The Moonlit Den, UNIVERSE`}
</section> */}
</article>
</section>
</div>
)
3 years ago
}