Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions components/ArchitectureComponents/Architecture.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import s from "./architecture.module.scss";
import React from "react";

const Architecture = () => {
return (
<>
<div className={s.container}>
<div className={s.content}>
<h1>Архитектура</h1>
<div className={s.slider}>

</div>
<div className={s.info}>
<span className={s.tag}> <a>Внешний облик жилого</a> комплекса <a>BROOKLYN</a> - исполнен в американском стиле</span>
<br />
<span className={s.under_tag}>
<br />
<a>Фасад:</a> “Вентилируемый фасад” <br />
Корзины для кондиционерных блоков <br />
Клинкерный кирпич из Германии <br />
Широкоформатный керамогранит <br />
Благородные натуральные камни <br />
Много стекла и металла <br />
Панорамные окна
</span>
</div>
</div>
</div>
</>
);
};

export default Architecture;
50 changes: 50 additions & 0 deletions components/ArchitectureComponents/architecture.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
.container {
display: flex;
flex-direction: column;
max-width: 1440px;
margin: 0 auto;
padding: 0px 100px 0px 100px;
.content {
display: flex;
flex-direction: column;
h1 {
font-family: "Sweet Mavka Script";
font-style: normal;
font-weight: 500;
font-size: 50px;
line-height: 73px;
text-align: center;
color: rgba(57, 56, 63, 0.8);
margin-bottom: 57px;
}
.slider {
display: flex;
}
.info {
.tag {
font-family: "Montserrat";
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 24px;
text-align: center;
color: rgba(57, 56, 63, 0.8);
a {
font-weight: 800;
}
}
.under_tag {
font-family: "Montserrat";
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 24px;
text-align: center;
color: rgba(57, 56, 63, 0.8);
a {
font-weight: 800;
}
}
}
}
}
13 changes: 6 additions & 7 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Head from 'next/head'
import Image from 'next/image'
import styles from '@/styles/Home.module.css'

import Head from "next/head";
import Image from "next/image";
import styles from "@/styles/Home.module.css";
import Architecture from "@/components/ArchitectureComponents/Architecture";

export default function Home() {
return (
Expand All @@ -12,8 +12,7 @@ export default function Home() {
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>


<Architecture />
</>
)
);
}
Binary file added public/Sweetmavkascript.woff
Binary file not shown.
Binary file added public/Sweetmavkascript.woff2
Binary file not shown.
Binary file added public/slide1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/slide2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,11 @@ p{
padding: 0;
}

@font-face {
font-family: "Sweet Mavka Script";
src: local("Sweet Mavka Script"),
url("../public/Sweetmavkascript.woff2") format("woff2"),
url("../public/Sweetmavkascript.woff") format("woff");
font-weight: 500;
font-style: normal;
}