diff --git a/components/menu.tsx b/components/menu.tsx index fc79ab8..9c3972d 100644 --- a/components/menu.tsx +++ b/components/menu.tsx @@ -3,8 +3,6 @@ import Image from 'next/image'; import styles from '../styles/components/Menu.module.css'; import Link from 'next/link'; import logo from "../public/img/logoblue.png"; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faMugHot } from '@fortawesome/free-solid-svg-icons' export default function Menu() { return ( diff --git a/pages/_app.tsx b/pages/_app.tsx index 345827c..74db7c1 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -4,6 +4,10 @@ import SiteLayout from '../layouts/global' import Menu from '../components/menu' import Footer from '../components/footer' +import '@fortawesome/fontawesome-svg-core/styles.css'; +import { config } from '@fortawesome/fontawesome-svg-core'; +config.autoAddCss = false; /* eslint-disable import/first */ + function MyApp({ Component, pageProps }: AppProps) { return ( diff --git a/pages/index.tsx b/pages/index.tsx index b43458a..b1ec337 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,6 +1,13 @@ import Head from 'next/head' import Image from 'next/image' import styles from '../styles/Index.module.css' +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' export default function Home() { return ( @@ -20,6 +27,62 @@ export default function Home() { DubbelNull is a small 2-man startup from The Netherlands developing and designing web applications. We make all kinds of things with a range of technologies like Laravel, NextJS and Wordpress. + +
+ +
+
+
+ +
+

Crystal clear sense

+

Farm based hosting

+
+
+ +
+ +
+

Service focused

+

Need something we don't explicitly offer? We can always work something out.

+
+
+ +
+ +
+

Future proof

+

Yes

+
+
+
+ +
+
+ +
+

Involved and committed

+

Yes

+
+
+ +
+ +
+

Price minded

+

Take advantage of the small scale of a startup's cost advantage

+
+
+ +
+ +
+

Flexible and versatile

+

Yes

+
+
+
+
diff --git a/styles/Index.module.css b/styles/Index.module.css index cfbfbf3..8cf8616 100644 --- a/styles/Index.module.css +++ b/styles/Index.module.css @@ -22,6 +22,33 @@ margin: auto; } +.features { + display: flex; + justify-content: space-between; + gap: 50px; +} + +.features > div { + width: 100%; + display: grid; + gap: 20px; +} + +.features section { + display: flex; + gap: 20px; + align-items: center; +} + +.features section > div { + display: grid; + gap: 10px; +} + +.features section * { + margin: unset; +} + /* animation */ .indexanim { diff --git a/styles/globals.css b/styles/globals.css index 17a258b..d95ea75 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -27,10 +27,10 @@ hr { color: rgba(0,0,0,0.1); } - /* variables */ :root { --padding-large: 50px; + --theme-color: #2463EB; }