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.
18 lines
485 B
18 lines
485 B
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>
|
|
)
|
|
} |