Add favicon

This commit is contained in:
Slava Bacherikov 2019-09-04 21:27:48 +03:00
parent fd33defb36
commit 1c06c334ff
7 changed files with 48 additions and 10 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9 KiB

View file

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 682.66669 682.66669"
height="682.66669"
width="682.66669"
id="svg869"
version="1.1">
<metadata
id="metadata875">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs873" />
<rect
ry="6.8580527"
rx="12.754615"
y="300.40793"
x="271.32806"
height="120"
width="150"
id="rect904"
style="opacity:1;fill:#181818;fill-opacity:0.99607843;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.99719101" />
<path
id="path4672"
d="m 271.2514,204.40703 c -36.37971,0 -66,29.62028 -66,66 v 30 a 6.0006,6.0006 0 0 0 6,6 h 20 a 6.0006,6.0006 0 0 0 6,-6 v -30 c 0,-18.84875 15.15125,-34 34,-34 18.84876,0 34,15.15125 34,34 v 30 a 6.0006,6.0006 0 0 0 6,6 h 20 a 6.0006,6.0006 0 0 0 6,-6 v -30 c 0,-36.37972 -29.62027,-66 -66,-66 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#181818;fill-opacity:0.99607843;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
assets/images/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

View file

@ -5,10 +5,10 @@
<meta name="keywords" content="bios, password, bypass, master password, generate, generator, laptop, notebook, computer, phoenix, insydeh20, sony, samsung, acer, dell, compaq, backdoor, laptop, fujitsu-siemens, hp, hewlett packard" />
<meta name="keywords" content="Recover laptops with lost BIOS password" />
<title>BIOS Master Password Generator for Laptops</title>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="assets/bootstrap.min.css" rel="stylesheet" />
<link rel="icon" type="image/x-ico" href="favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/images/bios-pw-192.png">
<style>
input#serial_id, div#answer { font-family: monospace }
</style>

View file

@ -70,10 +70,9 @@ function getWebpackConfig(production, gtag) {
var plugins = [
new CleanWebpackPlugin(),
new CopyWebpackPlugin([
{
from: 'assets/bootstrap.min.css',
to: 'assets/'
}
{from: 'assets/bootstrap.min.css', to: 'assets/'},
{from: 'assets/images/favicon.ico', to: 'favicon.ico'},
{from: 'assets/images/', to: 'assets/images/'},
]),
new DefinePlugin({
GOOGLE_ANALYTICS_TAG: JSON.stringify(gtag)
@ -82,10 +81,9 @@ function getWebpackConfig(production, gtag) {
minify: {
collapseWhitespace: true,
conservativeCollapse: true,
removeComments: true
removeComments: true,
},
inject: true,
template: 'html/index.html'
template: 'html/index.html',
}),
new VersionInfoPlugin({filename: 'version-info.txt'})
];