Create "where we are" and news pages

This commit is contained in:
Daniele Pancottini
2023-01-14 21:46:57 +01:00
parent 30b172cf29
commit 350390f3b8
7 changed files with 381 additions and 66 deletions

View File

@@ -1,11 +1,11 @@
import { Layout } from '@components/common'
import NewsSlider from '@components/common/News/NewsSlider'
import { Text } from '@components/ui'
export default function News() {
return (
<div className="max-w-2xl mx-8 sm:mx-auto py-20 flex flex-col items-center justify-center fit">
<Text variant="heading">Work In Progress</Text>
<Text className="">We are working for you...</Text>
<div className="mx-8 sm:mx-auto py-20 flex flex-col items-center justify-center fit">
<NewsSlider></NewsSlider>
</div>
)
}