google meta tag
This commit is contained in:
parent
3d688dfbc8
commit
ed392ef98d
|
@ -11,6 +11,7 @@
|
||||||
content="Web site created using create-react-app"
|
content="Web site created using create-react-app"
|
||||||
/>
|
/>
|
||||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.jpg" />
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.jpg" />
|
||||||
|
<script src="https://apis.google.com/js/platform.js" async defer></script>
|
||||||
<!--
|
<!--
|
||||||
manifest.json provides metadata used when your web app is installed on a
|
manifest.json provides metadata used when your web app is installed on a
|
||||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||||
|
@ -28,10 +29,9 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
<!-- CSS Styles-->
|
<!-- CSS Styles-->
|
||||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<title>Locaft</title>
|
<title>Locaft</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -11,6 +11,8 @@ import NavBar from "./components/NavBar";
|
||||||
import FillingDetails from "./components/FillingDetails";
|
import FillingDetails from "./components/FillingDetails";
|
||||||
import Error404 from './components/Error404';
|
import Error404 from './components/Error404';
|
||||||
import Payment from './components/Payment'
|
import Payment from './components/Payment'
|
||||||
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
const [userData, setUserData ] = useState({
|
const [userData, setUserData ] = useState({
|
||||||
token: undefined,
|
token: undefined,
|
||||||
|
|
|
@ -206,6 +206,7 @@ const responsePassGoogle = async (response) => {
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<BaseApp>
|
<BaseApp>
|
||||||
|
<meta name="google-signin-client_id" content={`${process.env.REACT_APP_CLIENT_ID}.apps.googleusercontent.com`} />
|
||||||
<AppSide>
|
<AppSide>
|
||||||
{!hasLogged ? (
|
{!hasLogged ? (
|
||||||
<GoogleLogin
|
<GoogleLogin
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
export const size = {
|
export const size = {
|
||||||
mobileS: '320px',
|
mobileS: '320px',
|
||||||
mobileM: '375px',
|
mobileM: '375px',
|
||||||
mobileL: '425px',
|
mobileL: '425px',
|
||||||
tablet: '768px',
|
tablet: '768px',
|
||||||
laptop: '1024px',
|
laptop: '1024px',
|
||||||
laptopL: '1440px',
|
laptopL: '1440px',
|
||||||
desktop: '2560px'
|
desktop: '2560px'
|
||||||
}
|
}
|
||||||
export const Device = {
|
export const Device = {
|
||||||
mobileS: `(min-width: ${size.mobileS})`,
|
mobileS: `(min-width: ${size.mobileS})`,
|
||||||
mobileM: `(min-width: ${size.mobileM})`,
|
mobileM: `(min-width: ${size.mobileM})`,
|
||||||
mobileL: `(min-width: ${size.mobileL})`,
|
mobileL: `(min-width: ${size.mobileL})`,
|
||||||
tablet: `(min-width: ${size.tablet})`,
|
tablet: `(min-width: ${size.tablet})`,
|
||||||
laptop: `(min-width: ${size.laptop})`,
|
laptop: `(min-width: ${size.laptop})`,
|
||||||
laptopL: `(min-width: ${size.laptopL})`,
|
laptopL: `(min-width: ${size.laptopL})`,
|
||||||
desktop: `(min-width: ${size.desktop})`,
|
desktop: `(min-width: ${size.desktop})`,
|
||||||
desktopL: `(min-width: ${size.desktop})`
|
desktopL: `(min-width: ${size.desktop})`
|
||||||
};
|
};
|
Loading…
Reference in New Issue