blog/src/components/ActionFooter/index.js
HesterG c3d361092e Add subscribe and community components, adjust blog width, update readme (#272)
- Updated readme
- Used double quotes instead of single quotes
- Increase blog content width

  Before

  ![Screen Shot 2023-07-14 at 13.45.45](/attachments/9c669c42-2efd-4ae5-bbf5-24f252c26fa0)

  After

  ![Screen Shot 2023-07-14 at 13.45.31](/attachments/6f72912c-2fd9-4a63-8839-583864faa474)

- Added subscribe and community components to buttom of the blog post page.

 ![Screen Shot 2023-07-14 at 15.55.12](/attachments/3808fa5a-e951-487b-8ed2-dc693cfec9e2)

  ![Screen Shot 2023-07-14 at 15.55.30](/attachments/864ff357-a116-47ce-abf0-8278e24ede7d)

  Loading:

  ![Screen Shot 2023-07-14 at 15.57.00](/attachments/2f0ace67-d83e-4415-a778-8e7913fb6505)

   Post sent:

  ![Screen Shot 2023-07-14 at 13.48.44](/attachments/ceac4970-a914-49d5-ad42-febb3d259d89)

   Mobile:

  ![Screen Shot 2023-07-14 at 15.58.19](/attachments/7e01f575-7e4d-4d99-9888-7fb246ceb313)

  ![Screen Shot 2023-07-14 at 15.58.27](/attachments/879128d1-f115-41a7-8e8e-574f0b3de208)

Reviewed-on: https://gitea.com/gitea/blog/pulls/272
Co-authored-by: HesterG <hestergong@gmail.com>
Co-committed-by: HesterG <hestergong@gmail.com>
2023-07-14 09:35:26 +00:00

54 lines
1.4 KiB
JavaScript

import footerCss from "./footer.module.css";
import ActionCard from "../ActionCard";
import FossIcon from "./foss.svg";
import SubscribeIcon from "./subscribeIcon.svg";
import Subscribe from "../Subscribe";
import React from "react";
import SvgImage from "../SvgImage";
export const ActionFooter = () => (
<div className={footerCss.cards}>
<ActionCard
icon={
<SvgImage
image={<FossIcon />}
title="An icon showing wave propagation"
/>
}
svgBackgroundColor="#ffffff"
title="Join our community"
description="Gitea is open source. Star our GitHub repo, and join our community on Discord!"
>
<a
className={footerCss.card__link}
href={'https://github.com/go-gitea/gitea'}
rel="noopener noreferrer"
target="_blank"
>
Go to GitHub&nbsp;&nbsp;&gt;
</a>
<a className={footerCss.card__link} href={'https://discord.com/invite/gitea'}>
Join Discord&nbsp;&nbsp;&gt;
</a>
</ActionCard>
<ActionCard
title="Subscribe to our newsletter"
description="Stay up to date with all things Gitea"
svgBackgroundColor="#1E1F27"
icon={
<SvgImage
image={<SubscribeIcon />}
title="An icon showing a paper plane"
/>
}
skin="primary"
>
<Subscribe
placeholder="Email address"
submitButtonText = "Subscribe"
/>
</ActionCard>
</div>
)