Skip to content

Commit

Permalink
Merge pull request #17 from plastic-labs/dm/review-tweaks-follow
Browse files Browse the repository at this point in the history
Review Tweaks Follow
  • Loading branch information
mckelvey authored Nov 26, 2024
2 parents 9b4674f + 97c22eb commit a775bca
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable import/no-default-export */

import { Main } from '@/components/layout/main'
import { GetInTouchSection } from '@/components/sections/get-in-touch'
import { ContactSection } from '@/components/sections/contact'
import { HeroSection } from '@/components/sections/hero'
import { PartnersSection } from '@/components/sections/partners'
import { ProductsSection } from '@/components/sections/products'
Expand All @@ -14,7 +14,7 @@ const Page = () => {
<ProductsSection />
<TeamSection />
<PartnersSection />
<GetInTouchSection />
<ContactSection />
</Main>
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import styled from 'styled-components'
import { Contact } from '@/components/composed/contact'
import { AsciiField } from '@/components/illos/ascii-field'
import { Section } from '@/components/layout/section'
import { WIDE_BREAKPOINT } from '@/styles/breakpoints'

const StyledGetInTouchSection = styled(Section)`
const StyledContactSection = styled(Section)`
--line-width: 0.0625rem;
display: grid;
Expand All @@ -22,14 +23,18 @@ const StyledGetInTouchSection = styled(Section)`
`

const StyledAsciiField = styled(AsciiField)`
min-height: 12rem;
min-height: 6rem;
@media (min-width: ${WIDE_BREAKPOINT}rem) {
min-height: 12rem;
}
`

export const GetInTouchSection: React.FC = () => {
export const ContactSection: React.FC = () => {
return (
<StyledGetInTouchSection id="contact">
<StyledContactSection id="contact">
<Contact />
<StyledAsciiField direction="vertical" inverse />
</StyledGetInTouchSection>
</StyledContactSection>
)
}
1 change: 1 addition & 0 deletions components/sections/contact/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { ContactSection } from './contact'
1 change: 0 additions & 1 deletion components/sections/get-in-touch/index.ts

This file was deleted.

Binary file modified public/team/leer-courtland.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a775bca

Please sign in to comment.