diff --git a/public/cup.png b/public/cup.png
new file mode 100644
index 0000000..95b511f
Binary files /dev/null and b/public/cup.png differ
diff --git a/src/user/marketplace/index.tsx b/src/user/marketplace/index.tsx
index d031443..0f45fac 100644
--- a/src/user/marketplace/index.tsx
+++ b/src/user/marketplace/index.tsx
@@ -1,6 +1,51 @@
+import { Tag } from 'antd';
import react from 'react'
+import { PrevMarketCard } from '../../components/prevMarketCard';
+import { UserPreview } from '../../components/userPreview';
import header from '../header'
+import './style.css';
+
export const Marketplace: react.FC = () => {
- return
{header}
+ return
+ {header}
+
+
+
+ Designer]}
+ tg={"vladimir_dubrovin"}
+ description="Долгое описание"
+ logo_url='/logo_example.png'
+ />
+
+
+
+
+
}
\ No newline at end of file
diff --git a/src/user/marketplace/style.css b/src/user/marketplace/style.css
new file mode 100644
index 0000000..0aef2e0
--- /dev/null
+++ b/src/user/marketplace/style.css
@@ -0,0 +1,26 @@
+.centered{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.mp-container{
+ width: 900px;
+ margin-top: 100px;
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+}
+.mp-previev{
+ background-color: #262626;
+ color: white;
+ border-radius: 16px;
+}
+
+.mp-content{
+ padding: 20px 100px;
+ background-color: white;
+ border-radius: 16px;
+ display: flex;
+ gap: 10px;
+}
\ No newline at end of file