feat: feed feature, typescript, remove google, fix errs & warns
publish / Build-and-publish (push) Successful in 13m32s

This commit is contained in:
Unknown
2026-07-17 22:22:29 +01:00
parent 2c42ecae5f
commit 8a10d127c1
55 changed files with 1887 additions and 587 deletions
+24 -23
View File
@@ -1,7 +1,11 @@
import React from 'react'
import { FaRss } from 'react-icons/fa'
import { Section } from '../shared'
import { SolidButton } from '../shared/styledComponents'
import { StyledHeading, StyledDesc, InputStyled, StyledAnchor } from './style'
import { siteMetadata } from '../../../gatsby-config'
const rssFeedUrl = `${siteMetadata.siteUrl}rss.xml`
const anchorStyles = {
color: '#888'
@@ -13,42 +17,39 @@ const Footer = () => (
<div className="col-md-3 me-md-5">
<StyledHeading>Data Controller</StyledHeading>
<StyledDesc>
Data Controller is the product of a UK company with a singular focus on{' '}
<StyledAnchor
href="https://sasapps.io"
target="_blank"
rel="noopener"
>
SAS Web Apps
</StyledAnchor>.
Data Controller is the product of a UK company with a singular focus
on <StyledAnchor href="https://sasapps.io">SAS Web Apps</StyledAnchor>
.
</StyledDesc>
</div>
<div className="col-md-3">
<StyledHeading>Source Code</StyledHeading>
<StyledDesc>
All our source code can be found on our self-hosted{' '}
<StyledAnchor
href="https://git.datacontroller.io"
target="_blank"
rel="noopener"
>
Data Controller source is on our self-hosted{' '}
<StyledAnchor href="https://git.datacontroller.io">
Gitea Repository
</StyledAnchor>
.
; the underlying SASjs framework is on{' '}
<StyledAnchor href="https://github.com/sasjs">GitHub</StyledAnchor>.
</StyledDesc>
</div>
<div className="col-md-3">
<StyledHeading>Other Resources</StyledHeading>
<StyledDesc>
Leverage our underlying tech stack on{' '}
<StyledAnchor
href="https://github.com/sasjs"
target="_blank"
rel="noopener"
>
Github
Connect on{' '}
<StyledAnchor href={siteMetadata.social.linkedin}>
LinkedIn
</StyledAnchor>
, read the{' '}
<StyledAnchor href="https://docs.datacontroller.io">
docs
</StyledAnchor>
, or subscribe to the{' '}
<StyledAnchor href={rssFeedUrl}>
<FaRss style={{ marginRight: '6px', verticalAlign: 'middle' }} />
RSS feed
</StyledAnchor>{' '}
and build your own SAS Powered Web Apps.
for updates.
</StyledDesc>
</div>
</div>