mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-05 07:56:15 +02:00
style: auto-format code
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
import React, { PropsWithChildren} from "react"
|
||||
import React, { PropsWithChildren } from "react"
|
||||
import * as SC from "./styles"
|
||||
|
||||
const Container = ({ children, ...restProps }: PropsWithChildren<{}>): JSX.Element => (
|
||||
const Container = ({
|
||||
children,
|
||||
...restProps
|
||||
}: PropsWithChildren<{}>): JSX.Element => (
|
||||
<SC.ContainerWrapper {...restProps}>{children}</SC.ContainerWrapper>
|
||||
)
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import styled from "styled-components";
|
||||
import styled from "styled-components"
|
||||
|
||||
export const SidebarTitle = styled.h3`
|
||||
text-transform: uppercase;
|
||||
`;
|
||||
`
|
||||
|
||||
@@ -6,6 +6,7 @@ html {
|
||||
-ms-text-size-adjust: 100%;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
@@ -3,10 +3,10 @@ import Helmet from "react-helmet"
|
||||
import { useStaticQuery, graphql } from "gatsby"
|
||||
|
||||
interface SEOProps {
|
||||
readonly description: string;
|
||||
readonly lang: string;
|
||||
readonly meta: object[];
|
||||
readonly title: string;
|
||||
readonly description: string
|
||||
readonly lang: string
|
||||
readonly meta: object[]
|
||||
readonly title: string
|
||||
}
|
||||
|
||||
const SEO = ({ description = "", lang = "en", meta = [], title }: SEOProps) => {
|
||||
@@ -69,6 +69,6 @@ const SEO = ({ description = "", lang = "en", meta = [], title }: SEOProps) => {
|
||||
]}
|
||||
/>
|
||||
)
|
||||
};
|
||||
}
|
||||
|
||||
export default SEO
|
||||
|
||||
Reference in New Issue
Block a user