Skip to content

Commit

Permalink
changed favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
davidknoerzer committed Apr 17, 2024
1 parent 13e74e4 commit 462567a
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 26 deletions.
38 changes: 19 additions & 19 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
/**
* Enable static exports for the App Router.
*
* @see https://nextjs.org/docs/app/building-your-application/deploying/static-exports
*/
output: "export",
/**
* Disable server-based image optimization. Next.js does not support
* dynamic features with static exports.
*
* @see https://nextjs.org/docs/app/api-reference/components/image#unoptimized
*/
images: {
unoptimized: true,
},
};
export default nextConfig;
/**
* Enable static exports for the App Router.
*
* @see https://nextjs.org/docs/app/building-your-application/deploying/static-exports
*/
output: "export",

/**
* Disable server-based image optimization. Next.js does not support
* dynamic features with static exports.
*
* @see https://nextjs.org/docs/app/api-reference/components/image#unoptimized
*/
images: {
unoptimized: true,
},
};

export default nextConfig;
2 changes: 1 addition & 1 deletion src/app/components/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const codingFont = Source_Code_Pro({
export default function HeroSection() {
return (
<div className="hero min-h-screen bg-fixed hero-background">
<div className="hero-content flex-col lg:flex-row bg-base-200 bg-opacity-80 m-4 rounded-xl">
<div className="hero-content flex-col lg:flex-row bg-base-200 bg-opacity-85 m-4 rounded-xl">
<Image
priority
src={myPicture}
Expand Down
Binary file modified src/app/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
}

.body-background {
background: linear-gradient(45deg, #a2cad7, #5cb1c8, #44a7bf)
background: linear-gradient(#70b7cb, #63b5cb, #54a9c5, #319ab9)
}
5 changes: 0 additions & 5 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ const config: Config = {
center: true,
padding: "1rem",
},
extend: {
backgroundImage: {
"custom-gradient": `linear-gradient(to bottom-left, #6ee7b7, #3b82f6)`
},
},
},
daisyui: {
themes: ["light",],
Expand Down

0 comments on commit 462567a

Please sign in to comment.