Skip to content

Commit

Permalink
updated title
Browse files Browse the repository at this point in the history
  • Loading branch information
tigransimonyan committed Feb 27, 2024
1 parent f45644c commit aeedcd0
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Builder from '@/components/Builder';
import { Metadata } from 'next';
import Title from 'antd/es/typography/Title';
import { Flex } from 'antd';
import { Tag } from 'antd';

// either Static metadata
export const metadata: Metadata = {
Expand All @@ -13,9 +13,31 @@ export const metadata: Metadata = {
export default function Home() {
return (
<main className="max-w-screen-sm py-10 mx-auto">
<Flex justify="center" className="mb-5">
<Title level={3}>Add Comments to Your Website</Title>
</Flex>
<div className="mb-5 flex flex-col justify-center items-center">
<Title
style={{
alignItems: 'center',
display: 'flex',
gap: '8px',
margin: 0,
}}
level={1}
>
Zoomment <Tag color="purple">Alpha</Tag>
</Title>
<Title
type="secondary"
level={5}
style={{
alignItems: 'center',
display: 'flex',
gap: '8px',
margin: '10px 5px',
}}
>
Add Comments to Your Website
</Title>
</div>
<Builder />
</main>
);
Expand Down

0 comments on commit aeedcd0

Please sign in to comment.