fix background
This commit is contained in:
parent
826c5cdf2b
commit
b8087eed12
|
@ -51,12 +51,12 @@ const Layout = ({ children }) => {
|
||||||
// `);
|
// `);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="background bg-top bg-contain">
|
||||||
<FixedHeader />
|
<FixedHeader />
|
||||||
<main>{children}</main>
|
<main>{children}</main>
|
||||||
<FooterNavigation />
|
<FooterNavigation />
|
||||||
<Footer />
|
<Footer />
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -89,7 +89,7 @@ const DevelopersPage = () => (
|
||||||
<Layout>
|
<Layout>
|
||||||
<SEO title="Developers" />
|
<SEO title="Developers" />
|
||||||
|
|
||||||
<Section className="background bg-top bg-cover" first={true}>
|
<Section first={true}>
|
||||||
<div className="flex flex-col desktop:flex-row desktop:space-y-0 space-y-12 desktop:space-x-12">
|
<div className="flex flex-col desktop:flex-row desktop:space-y-0 space-y-12 desktop:space-x-12">
|
||||||
<div className="space-y-12">
|
<div className="space-y-12">
|
||||||
<h1 className="text-white">
|
<h1 className="text-white">
|
||||||
|
|
|
@ -70,7 +70,7 @@ const IndexPage = () => {
|
||||||
<Layout>
|
<Layout>
|
||||||
<SEO title="Home" />
|
<SEO title="Home" />
|
||||||
|
|
||||||
<Section className="background bg-top bg-cover" first={true}>
|
<Section first={true}>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<h1 className="text-4xl desktop:text-6xl text-white">
|
<h1 className="text-4xl desktop:text-6xl text-white">
|
||||||
Build a <span className="text-primary underline-white">free Internet</span>
|
Build a <span className="text-primary underline-white">free Internet</span>
|
||||||
|
|
Reference in New Issue