* feat: graphql erabiltzen du * node bertsioa jeisten du * feat: netlify deployments sartzen du * feat: token-a sortzen du * chore: Gatsbyren aldagaiak berreskuratzen ditu * fix: query-a konpontzen du
111 lines
2.5 KiB
TypeScript
111 lines
2.5 KiB
TypeScript
import { graphql, PageProps, useStaticQuery } from 'gatsby';
|
|
import React from 'react';
|
|
import { GlobalStyles } from '../ui/GlobalStyles';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
import { Gainburua } from '../components/Gainburua';
|
|
import styled from 'styled-components';
|
|
import { colors, font, fontWeight, size } from '../ui/theme';
|
|
import { Container } from '../components/Container';
|
|
import { rem } from 'polished';
|
|
import Gezia from '../assets/gezia.svg';
|
|
import ReactMarkdown from 'react-markdown';
|
|
import { Oina } from '../components/Oina';
|
|
|
|
interface DataProps {
|
|
strapiHasiera: {
|
|
deskribapena: string;
|
|
izenburua: string;
|
|
bazkidetza: string;
|
|
};
|
|
}
|
|
|
|
const IndexPage: React.VFC<PageProps> = () => {
|
|
const { strapiHasiera } = useStaticQuery<DataProps>(graphql`
|
|
{
|
|
strapiHasiera {
|
|
deskribapena
|
|
izenburua
|
|
bazkidetza
|
|
}
|
|
}
|
|
`);
|
|
|
|
return (
|
|
<>
|
|
<Helmet
|
|
title={`${strapiHasiera.izenburua} | Laba`}
|
|
htmlAttributes={{ lang: 'eu' }}
|
|
>
|
|
<meta name="description" content={strapiHasiera.deskribapena} />
|
|
</Helmet>
|
|
|
|
<GlobalStyles />
|
|
|
|
<Gainburua
|
|
atala="hasiera"
|
|
izenburua={strapiHasiera.izenburua}
|
|
deskribapena={strapiHasiera.deskribapena}
|
|
onClick={() => {
|
|
window.location.replace('/#labazkidetza');
|
|
}}
|
|
/>
|
|
|
|
<ContentWrapper id="labazkidetza">
|
|
<Container>
|
|
<Deskribapena>{strapiHasiera.bazkidetza}</Deskribapena>
|
|
|
|
<IzanLabaWrapper>
|
|
<Botoia href="https://forms.gle/wV41CVkRX1JtHsAu9">
|
|
<GeziaLogo /> Labazkidetu.
|
|
</Botoia>
|
|
</IzanLabaWrapper>
|
|
</Container>
|
|
</ContentWrapper>
|
|
|
|
<Oina />
|
|
</>
|
|
);
|
|
};
|
|
|
|
const Deskribapena = styled(ReactMarkdown)`
|
|
margin-bottom: ${rem(size.large)};
|
|
|
|
p:not(-last-child) {
|
|
margin-bottom: ${rem(size.base)};
|
|
}
|
|
`;
|
|
|
|
const ContentWrapper = styled.div`
|
|
padding: ${size.huge}px 0;
|
|
font-weight: ${fontWeight.regular};
|
|
${font.large()};
|
|
`;
|
|
|
|
const Botoia = styled.a`
|
|
border: 2px solid ${colors.beltza};
|
|
${font.large()};
|
|
padding: ${rem(size.base)};
|
|
background: ${colors.zuria};
|
|
font-weight: ${fontWeight.bold};
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
transition: color 500ms ease-out 100ms;
|
|
&:hover {
|
|
color: ${colors.morea};
|
|
}
|
|
`;
|
|
|
|
const GeziaLogo = styled(Gezia)`
|
|
margin-right: ${rem(size.tiny)};
|
|
`;
|
|
|
|
const IzanLabaWrapper = styled.div`
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
`;
|
|
|
|
export default IndexPage;
|