Skip to content

Commit

Permalink
New favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
naticampiglia committed Jan 31, 2024
1 parent fca71de commit d1f3a7a
Show file tree
Hide file tree
Showing 3 changed files with 375 additions and 9 deletions.
27 changes: 19 additions & 8 deletions gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,28 @@ const config: GatsbyConfig = {
path: `${__dirname}/src/data`,
},
},
// this plugin will pull all the files in our project system
{
resolve: "gatsby-source-filesystem",
options: {
name: "src",
path: `${__dirname}/src/`,
icon: 'https://cdn.wia.io/website/images/favicons/android-chrome-192x192.png'
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Landify UI`,
short_name: `Landify UI`,
start_url: `/`,
background_color: `#7C3AED`,
theme_color: `#7C3AED`,
display: `minimal-ui`,
icon: `src/images/favicon.png`, // Replace with your favicon (This path is relative to the root of the site)
},
name: "wia",
short_name: "wia",
start_url: "/",
background_color: "#6b37bf",
theme_color: "#6b37bf",
// Enables "Add to Homescreen" prompt and disables browser UI (including back button)
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
display: "standalone",
icon: "https://cdn.wia.io/website/images/favicons/android-chrome-192x192.png" // This path is relative to the root of the site.
}
},
{
resolve: `gatsby-plugin-google-gtag`,
Expand Down
1 change: 0 additions & 1 deletion src/components/hero.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from 'react';
import Button from './button';

import EnergyPage from '../images/energy-page.png';
import { StaticImage } from 'gatsby-plugin-image';

const Hero = () => {
Expand Down
Loading

0 comments on commit d1f3a7a

Please sign in to comment.