diff --git a/package-lock.json b/package-lock.json index 004e7e4..b2067e6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,7 @@ "js-cookie": "^3.0.1", "localStorage": "^1.0.4", "next": "^12.1.0", - "next-auth": "^4.5.0", + "next-auth": "^4.9.0", "next-plausible": "^3.1.9", "nextjs-progressbar": "^0.0.14", "prop-types": "^15.7.2", @@ -1878,9 +1878,9 @@ } }, "node_modules/next-auth": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/next-auth/-/next-auth-4.5.0.tgz", - "integrity": "sha512-B6gYRIbqtj8nlDsx3y2Ruwp/mvZnItPs7VUULY43QYw+M9xtDPIM9EBZ3ryd/wNYA3MDteBJlzGm/ivseXcmJA==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/next-auth/-/next-auth-4.9.0.tgz", + "integrity": "sha512-/4S5dFeyNg2nXlD7g/Sh5A4WZWnUMDpEf8x/x+gzmAf5cAY2SjDM6sLk9u4XRmsndsxQpIMWDw03sUTAD+Yzog==", "dependencies": { "@babel/runtime": "^7.16.3", "@panva/hkdf": "^1.0.1", @@ -3822,9 +3822,9 @@ } }, "next-auth": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/next-auth/-/next-auth-4.5.0.tgz", - "integrity": "sha512-B6gYRIbqtj8nlDsx3y2Ruwp/mvZnItPs7VUULY43QYw+M9xtDPIM9EBZ3ryd/wNYA3MDteBJlzGm/ivseXcmJA==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/next-auth/-/next-auth-4.9.0.tgz", + "integrity": "sha512-/4S5dFeyNg2nXlD7g/Sh5A4WZWnUMDpEf8x/x+gzmAf5cAY2SjDM6sLk9u4XRmsndsxQpIMWDw03sUTAD+Yzog==", "requires": { "@babel/runtime": "^7.16.3", "@panva/hkdf": "^1.0.1", diff --git a/package.json b/package.json index c717111..a7a1a41 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "js-cookie": "^3.0.1", "localStorage": "^1.0.4", "next": "^12.1.0", - "next-auth": "^4.5.0", + "next-auth": "^4.9.0", "next-plausible": "^3.1.9", "nextjs-progressbar": "^0.0.14", "prop-types": "^15.7.2", diff --git a/pages/index.tsx b/pages/index.tsx index c22a844..1bd5aa4 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -4,6 +4,7 @@ import { useRouter } from "next/router"; import KeyboardReturnIcon from "@mui/icons-material/KeyboardReturn"; import Footer from "@components/Footer/Footer"; import Header from "@components/Header/Header"; +import { motion } from "framer-motion"; import { getExampleRepo } from "@services/example_repos"; export default function Home() { @@ -36,10 +37,8 @@ export default function Home() { }; useEffect(() => { - changeRepoValue(); - } - , []); - + changeRepoValue(); + }, []); return ( @@ -50,20 +49,68 @@ export default function Home() { title="Internet's Git Time machine" desc="Go back in time and explore your favorite Open source projects " > - - {" "} - GitStory logo Beta - - - Internet's git time machine - - - - - Press Enter/Return to search - - - + + + {" "} + GitStory logo Beta + + + + + Internet's git time machine + + + + + + + Press Enter/Return to search + + + + + + ); }