Skip to content

Commit

Permalink
Merge pull request #4 from MartinsOnuoha/CHORE-SEO-VARS
Browse files Browse the repository at this point in the history
Chore seo vars
  • Loading branch information
MartinsOnuoha authored Oct 26, 2023
2 parents 27d5be8 + 96c5739 commit b51783d
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ coverage
*.njsproj
*.sln
*.sw?
.env
46 changes: 45 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,51 @@
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What Should I Design?</title>

<title itemprop="name">%VITE_APP_TITLE%</title>
<meta name="title" content="%VITE_APP_TITLE%" />
<meta name="url" content="%VITE_APP_WEBSITE%" />
<meta name="description" content="%VITE_APP_DESCRIPTION%" />
<meta name="keywords" content="%VITE_APP_KEYWORDS%" />
<meta name="coverage" content="Worldwide" />
<meta name="distribution" content="Global" />
<meta name="HandheldFriendly" content="True" />
<meta name="msapplication-tap-highlight" content="no" />

<!-- Apple Mobile -->
<meta name="apple-mobile-web-app-title" content="%VITE_APP_TITLE%" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-touch-fullscreen" content="yes" />

<!-- Sitemap & RSS Feed Tags -->
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml" />

<!-- BOTS META -->
<meta name="robots" content="index,follow" />
<meta name="googlebot" content="index,follow" />

<!-- Title META -->

<!-- Description META -->
<meta itemprop="description" content="%VITE_APP_DESCRIPTION%" />

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="%VITE_APP_WEBSITE%" />
<meta property="og:title" content="%VITE_APP_TITLE%" />
<meta property="og:description" content="%VITE_APP_DESCRIPTION%" />
<meta property="og:image" content="%VITE_APP_IMG%" />
<meta property="og:site_name" content="%VITE_APP_TITLE%" />
<meta property="og:locale" content="%VITE_APP_LANG%">

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="%VITE_APP_WEBSITE%" />
<meta property="twitter:title" content="%VITE_APP_TITLE%" />
<meta property="twitter:description" content="%VITE_APP_DESCRIPTION%" />
<meta property="twitter:image" content="%VITE_APP_IMG%" />
<meta name="twitter:image:src" content="%VITE_APP_IMG%" />
</head>
<body>
<div id="app"></div>
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "what-should-i-design",
"version": "0.0.0",
"license": "(MIT OR Apache-2.0)",
"keywords": ["ui/ux", "problem-statment", "what-should-i-design", "design"],
"author": {
"email": "martinsvictor.nd@gmail.com",
"name": "MartinsOnuoha",
Expand Down Expand Up @@ -52,6 +53,10 @@
"vitest": "^0.34.6",
"vue-tsc": "^1.8.19"
},
"repository": {
"type": "git",
"url": "https://github.com/MartinsOnuoha/what-should-i-design"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji-conventional"
Expand Down
Binary file added public/banner.webp
Binary file not shown.
16 changes: 16 additions & 0 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->


<url>
<loc>https://whatshouldidesign.space/</loc>
<lastmod>2023-10-26T16:14:14+00:00</lastmod>
</url>


</urlset>
3 changes: 1 addition & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
content: ["./src/**/*.{html,vue}"],
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
content: ['./src/**/*.{js,jsx,ts,tsx,vue}'],
theme: {
extend: {},
},
Expand Down

0 comments on commit b51783d

Please sign in to comment.