parent
0bbb8cab81
commit
60e0747d68
@ -0,0 +1,18 @@
|
||||
import Head from 'next/head';
|
||||
import styles from '../styles/Services.module.css';
|
||||
|
||||
export default function Services() {
|
||||
return (
|
||||
<div className={"page " + styles.services}>
|
||||
<Head>
|
||||
<title>{process.env.NEXT_PUBLIC_NAME} | Services</title>
|
||||
</Head>
|
||||
|
||||
<section className="container">
|
||||
<article className="content">
|
||||
|
||||
</article>
|
||||
</section>
|
||||
</div>
|
||||
)
|
||||
}
|
After Width: | Height: | Size: 260 KiB |
After Width: | Height: | Size: 102 KiB |
After Width: | Height: | Size: 289 KiB |
@ -0,0 +1,14 @@
|
||||
.showcaseClient {
|
||||
display: grid;
|
||||
grid-template-columns: 50% auto;
|
||||
gap: var(--padding-lg);
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.showcaseClient img {
|
||||
border-radius: var(--padding);
|
||||
}
|
||||
|
||||
.showcaseClient h3 {
|
||||
margin: unset;
|
||||
}
|
Loading…
Reference in new issue