Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

about akai #31

Merged
merged 1 commit into from
Dec 4, 2020
Merged
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
4 changes: 2 additions & 2 deletions src/components/Title/Title.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ const alignments = {
left: styles.left,
};

export default function Title({ children, alignment = "center" }) {
export default function Title({ children, className, alignment = "center" }) {
return (
<h2 className={classnames(styles.title, alignments[alignment])}>
<h2 className={classnames(styles.title, alignments[alignment], className)}>
{children}
</h2>
);
Expand Down
12 changes: 9 additions & 3 deletions src/components/Title/Title.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,15 @@
}

.left {
text-align: left;
@extend .center;
}

&::after {
margin: 15px 0 25px;
@media only screen and (min-width: $tablet) {
.left {
text-align: left;

&::after {
margin: 15px 0 25px;
}
}
}
7 changes: 2 additions & 5 deletions src/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
import React from "react";
import SEO from "../components/SEO";
import Main from "../sections/Main";
import About from "../sections/About";
import LinkIcons from "../sections/LinkIcons";
import JoinUs from "../sections/JoinUs";
import Footer from "../sections/Footer";
import Section from "../components/Section";
import Title from "../components/Title";

export default function Home() {
return (
<main>
<SEO />
<Main />
<Section>
<Title alignment="left">O AKAI</Title>
</Section>
<About />
<LinkIcons />
<JoinUs />
<Footer />
Expand Down
34 changes: 34 additions & 0 deletions src/sections/About/About.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import React from "react";
import Section from "../../components/Section";
import Title from "../../components/Title";
import styles from "./About.module.scss";

export default function About() {
return (
<Section className={styles.section}>
<div className={styles.sectionDetails}>
<div className={styles.sectionColumn}>
<Title alignment="left">O AKAI</Title>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur
repellendus laudantium earum rem repellat, quia atque quod
consectetur praesentium, harum accusamus voluptates dolore,
distinctio corporis nemo? Architecto modi suscipit rem facilis
tenetur id. Maxime incidunt, laborum tempore dolore at aliquam
accusantium exercitationem ex sed repellendus quibusdam aperiam
soluta commodi magnam! Lorem ipsum dolor sit amet consectetur
adipisicing elit. Aspernatur repellendus laudantium earum rem
repellat, quia atque quod consectetur praesentium, harum accusamus
voluptates dolore, distinctio corporis nemo? Architecto modi
suscipit rem facilis tenetur id. Maxime incidunt, laborum tempore
dolore at aliquam accusantium exercitationem ex sed repellendus
quibusdam aperiam soluta commodi magnam!
</p>
</div>
<div className={styles.sectionColumn}>
<img src="/img/section-design.jpg" className={styles.sectionImage} />
</div>
</div>
</Section>
);
}
47 changes: 47 additions & 0 deletions src/sections/About/About.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
@import "../../styles/vars.scss";

.section {
p {
color: $text-color;
}
}

.title {
margin: 15px;
}

.sectionDetails {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
text-align: center;
}

.sectionColumn {
flex: 1;
max-width: 500px;
margin: 0 15px;

& + & {
padding-top: 35px;
}
}

.sectionImage {
width: 100%;
box-shadow: 0 3px 30px -5px rgba(0, 0, 0, 0.75);
}

@media only screen and (min-width: $tablet) {
.sectionColumn {
& + & {
padding-top: 0px;
}
}

.sectionDetails {
flex-direction: row;
text-align: initial;
}
}
1 change: 1 addition & 0 deletions src/sections/About/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./About.jsx";
2 changes: 1 addition & 1 deletion src/sections/JoinUs/JoinUs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function JoinUs() {
<img src={img} className={styles.sectionImage} />
</div>
<div className={styles.sectionColumn}>
<Title>{name}</Title>
<Title alignment="left">{name}</Title>
<p>{description}</p>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/sections/JoinUs/JoinUs.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@

.sectionDetails {
flex-direction: row;
text-align: initial;

&:nth-of-type(even) {
flex-direction: row-reverse;
Expand Down