From 870a529a9a3b61d17443197d4e5c105521cec298 Mon Sep 17 00:00:00 2001
From: Tomas Havlicek <xhavlic@fi.muni.cz>
Date: Mon, 13 Jun 2022 14:11:59 +0200
Subject: [PATCH] feat: about page styling

---
 frontend/src/components/About.tsx | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/frontend/src/components/About.tsx b/frontend/src/components/About.tsx
index 39afd40..65f8d3f 100644
--- a/frontend/src/components/About.tsx
+++ b/frontend/src/components/About.tsx
@@ -1,7 +1,18 @@
-import React from "react"
+import { Space, Typography, Card } from "antd"
+import React from "react";
+const { Title, Paragraph, Text, Link } = Typography;
 
 export const About = () => {
     return (
-        <div>Future place for info about our site.</div>
+        <>
+        <Typography>
+        <Space direction="vertical" size="middle" style={{ display: 'flex' , padding:16, textAlign: 'center'}}>
+            <Card title={<Title>About</Title>}>
+                        <Paragraph> Movie Base is database of movies.</Paragraph>
+                        <Paragraph> It is possible to view popular movies, search for your favourites or checkout details of every movie possible </Paragraph>
+            </Card>
+        </Space>
+        </Typography>
+        </>
     )
 }
\ No newline at end of file
-- 
GitLab