diff --git a/package.json b/package.json index 7f674bb..cb9f4d5 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,15 @@ { "name": "ana-novkovic-portfolio", "version": "0.1.0", + "homepage": "https://a9na.github.io/", "private": true, "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint", - "deploy": "next build && gh-pages -d out" + "predeploy": "npm run build", + "deploy": "gh-pages --d build" }, "dependencies": { "@bradgarropy/next-link": "^1.1.0", @@ -27,9 +29,5 @@ "eslint-config-next": "^14.1.0", "postcss": "^8.0.0" } - - - - } \ No newline at end of file diff --git a/src/app/page.jsx b/src/app/page.jsx index 6b3e16c..866fc48 100644 --- a/src/app/page.jsx +++ b/src/app/page.jsx @@ -3,12 +3,6 @@ import Image from "next/image"; import { motion } from "framer-motion"; -const links = [ - { url: "/projects", title: "Projects" }, - { url: "/contact", title: "Contact" }, -]; - - const Homepage = () => { return ( { transition={{ duration: 1 }} >
-
+

- Enthusiastically Innovating, Designing the Future of Digital Experiences. + Enthusiastically Innovating, Designing the Future of Digital Experiences.

- Hello! I'm Ana! Welcome to my digital atelier, a space where creativity and innovation + Hello! I'm Ana! Welcome to my digital atelier, a space where creativity and innovation seamlessly blend.

- - View My Work - - - Let's connect - + + View My Work + + + Let's connect +
@@ -43,4 +37,4 @@ const Homepage = () => { ); }; -export default Homepage; \ No newline at end of file +export default Homepage;