Skip to content

Commit

Permalink
another try
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoGytis committed Jan 25, 2024
1 parent e3fe642 commit 2edfc96
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 26 deletions.
8 changes: 6 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
* @type {import('next').NextConfig}
*/
const nextConfig = {

output: "export",
images: { unoptimized: true },
};

module.exports = nextConfig;
module.exports = (_phase, { defaultConfig }) => {
const plugins = [withStaticImport, withBundleAnalyzer, withCustomWebpack]
return plugins.reduce((acc, plugin) => plugin(acc), { ...defaultConfig, ...config })
}
48 changes: 24 additions & 24 deletions src/app/components/About.tsx
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
const About: any = () => {
return (
<div
id="about"
className="flex flex-col gap-4 text-lg lg:p-6 mb-16 md:mb-20 hover_border"
>
<p>
{/* // output: "export",
// images: { unoptimized: true }, */}
I have experience developing web applications, from simple landing pages
to progressive web applications. I strive to create software that not
only functions efficiently under the hood, but also provides intuitive,
pixel-perfect user experiences.
</p>
<p>
I love learning new and better ways to create seamless user experiences
with clean, efficient and scalable code. I consider work an ongoing
education, and I am always looking for opportunities to work with those
who are willing to share their knowledge as much as I want to learn. At
the end of the day, my primary goal is to create something beautiful
with people that bring out the best in me.
</p>
<p>At my free time I am out in the woods or swimming.</p>
</div>
);
return (
<div
id="about"
className="flex flex-col gap-4 text-lg lg:p-6 mb-16 md:mb-20 hover_border"
>
<p>
I have experience developing web applications, from simple
landing pages to progressive web applications. I strive to
create software that not only functions efficiently under the
hood, but also provides intuitive, pixel-perfect user
experiences.
</p>
<p>
I love learning new and better ways to create seamless user
experiences with clean, efficient and scalable code. I consider
work an ongoing education, and I am always looking for
opportunities to work with those who are willing to share their
knowledge as much as I want to learn. At the end of the day, my
primary goal is to create something beautiful with people that
bring out the best in me.
</p>
<p>At my free time I am out in the woods or swimming.</p>
</div>
);
};

export default About;

0 comments on commit 2edfc96

Please sign in to comment.