diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index c90af2f578..c40c9aceb0 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -11,7 +11,7 @@ on:
branches:
- my-portfolio
schedule:
- - cron: "0 12 * * FRI" # see https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events
+ - cron: "0 0 * * *" # see https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events
jobs:
build-and-deploy:
runs-on: ubuntu-latest
diff --git a/src/containers/profile/Profile.js b/src/containers/profile/Profile.js
index ec2e4500a4..8ef7f4e0dd 100644
--- a/src/containers/profile/Profile.js
+++ b/src/containers/profile/Profile.js
@@ -4,8 +4,8 @@ import Contact from "../contact/Contact";
import Loading from "../loading/Loading";
const renderLoader = () => ;
-const GithubProfileCard = lazy(() =>
- import("../../components/githubProfileCard/GithubProfileCard")
+const GithubProfileCard = lazy(
+ () => import("../../components/githubProfileCard/GithubProfileCard")
);
export default function Profile() {
const [prof, setrepo] = useState([]);
diff --git a/src/containers/projects/Projects.js b/src/containers/projects/Projects.js
index 136160eb1e..38755481b0 100644
--- a/src/containers/projects/Projects.js
+++ b/src/containers/projects/Projects.js
@@ -5,8 +5,8 @@ import {openSource, socialMediaLinks} from "../../portfolio";
import StyleContext from "../../contexts/StyleContext";
import Loading from "../../containers/loading/Loading";
export default function Projects() {
- const GithubRepoCard = lazy(() =>
- import("../../components/githubRepoCard/GithubRepoCard")
+ const GithubRepoCard = lazy(
+ () => import("../../components/githubRepoCard/GithubRepoCard")
);
const FailedLoading = () => null;
const renderLoader = () => ;
diff --git a/src/index.css b/src/index.css
index d3dbe8f04a..b01137c501 100644
--- a/src/index.css
+++ b/src/index.css
@@ -2,13 +2,15 @@
font-family: "Agustina Regular";
font-style: normal;
font-weight: normal;
- src: local("Agustina Regular"),
+ src:
+ local("Agustina Regular"),
url("./assets/fonts/Agustina.woff") format("woff");
font-display: swap;
}
@font-face {
font-family: "Montserrat";
- src: local("Montserrat"),
+ src:
+ local("Montserrat"),
url("./assets/fonts/Montserrat-Regular.ttf") format("woff");
font-display: swap;
}
@@ -22,7 +24,10 @@ body {
}
body {
margin: 0;
- font: 19px / 23px Montserrat, "Montserrat", sans-serif;
+ font:
+ 19px / 23px Montserrat,
+ "Montserrat",
+ sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}