Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
a9na committed May 23, 2024
1 parent 107184b commit 37d1e66
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 21 deletions.
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -27,9 +29,5 @@
"eslint-config-next": "^14.1.0",
"postcss": "^8.0.0"
}





}
26 changes: 10 additions & 16 deletions src/app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<motion.div
Expand All @@ -18,29 +12,29 @@ const Homepage = () => {
transition={{ duration: 1 }}
>
<div className="h-full flex flex-col lg:flex-row px-12 sm:px-8 md:px-12 lg:px-20 xl:px-48">
<div className="h-1/2 lg:h-full lg:w-1/2 relative">
<div className="h-1/2 lg:h-full lg:w-1/2 relative">
<Image src="/my_photo.jpeg" alt="" fill className="object-contain" />
</div>
<div className="h-1/2 lg:h-full lg:w-1/2 flex flex-col gap-8 items-center justify-center">
<h1 className="text-4xl md:text-6xl font-bold">
Enthusiastically Innovating, Designing the Future of Digital Experiences.
Enthusiastically Innovating, Designing the Future of Digital Experiences.
</h1>
<p className="md:text-xl">
Hello! I'm Ana! Welcome to my digital atelier, a space where creativity and innovation
Hello! I&apos;m Ana! Welcome to my digital atelier, a space where creativity and innovation
seamlessly blend.
</p>
<div className="w-full flex gap-4">
<a href="/projects" className="p-4 rounded-lg ring-1 ring-black bg-black text-white">
View My Work
</a>
<a href="/contact" className="p-4 rounded-lg ring-1 ring-black">
Let's connect
</a>
<a href="/projects" className="p-4 rounded-lg ring-1 ring-black bg-black text-white">
View My Work
</a>
<a href="/contact" className="p-4 rounded-lg ring-1 ring-black">
Let&apos;s connect
</a>
</div>
</div>
</div>
</motion.div>
);
};

export default Homepage;
export default Homepage;

0 comments on commit 37d1e66

Please sign in to comment.