Skip to content

Commit

Permalink
last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitchellesweetie committed Jul 20, 2023
0 parents commit 66ff823
Show file tree
Hide file tree
Showing 33 changed files with 1,349 additions and 0 deletions.
37 changes: 37 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html>
<head>

<link rel="stylesheet" type="text/css" href="css.css">

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<div class="aboutdiv">

<div class="about">VISION</div>
<div class="about1">To provide al word class practical training of choice</div>

<div class="about">MISSION</div>
<div class="about1">To provide our clients with pragmatic, Appropriate, Practical, Quality, Affordable and relevant training</div>
<div class="about">CORE VALUES</div>

<div class="about1">
<ul>

<li>Professionalism</li>
<li>Excellence</li>
<li>Intergrity</li>
<li>Reliability</li>
<li>Quality</li>
<li>Diligence</li>

</ul>
</div>

</div>

</body>
</html>
Binary file added anastansia.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added buildings.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
137 changes: 137 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>

<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>contact</title>
</head>
<body>


<div class="tittle">
<img src="firm.png" class="tittle-details">

<div class="menu">

<a href="#paneno.html">Home </a>
<div class="menu2">
<button type="button"class="subnavbtn">About Us</button>
<div class="dropup-content" >
<a href="vision.html">Vision,Mision and Core Values</a><br>
<a href="whatwedo.html">What we do</a><br>
<a href="team.html">Our Team</a>

</div></div>
<div class="menu2">
<button type="button"class="subnavbtn">Services</button>
<div class="dropup-content">
<a href="training.html">Trainings</a><br>
<a href="otherservices.html">Other Services</a><br>
<a href="covid.html">Covid Pandemic</a>



</div></div>
<a href="contact.html">Contact</a>




</div>
<div class="wholeclass">
<div class="contact-ti">OUR CONTACTS</div>
<br />
<div class="contact-sub">
<span class="material-symbols-outlined"> home </span>Paneno Crime and
security watch
</div>
<br />
<div class="contact-num">
<span class="material-symbols-outlined">call</span> +254732272772, 0722168844
</div>
<br />
<div class="email"><span class="material-symbols-outlined">mail</span>[email protected]</div>
<br />
</div>
<div class="form">
<form>
<label>Your name</label><br />
<input type="text" name="name" id="username" /><br />
<label>Your email</label><br />
<input type="email" name="email" id="email" /><br />
<label>subject</label><br />
<input type="text" name="text" id="text" /><br />
<label> Your message(optional)</label><br />
<textarea id="message" rows="20" cols="40"></textarea><br />
<button type="button" id="submit" class="submit">Submit</button>
</form>
</div>

<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.23.0/firebase-app.js";
import {
getDatabase,
set,
ref,
} from "https://www.gstatic.com/firebasejs/9.23.0/firebase-database.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries

// Your web app's Firebase configuration
const firebaseConfig = {
apiKey: "AIzaSyB3NMiFc9EzfAaQ6ILptnAe9sn7wNfuX2I",
authDomain: "paneno-894c0.firebaseapp.com",
projectId: "paneno-894c0",
storageBucket: "paneno-894c0.appspot.com",
messagingSenderId: "960986123494",
appId: "1:960986123494:web:8fbd3a576c56d1a8983f27",
};
// tialize Firebase
const app = initializeApp(firebaseConfig);
const database = getDatabase(app);

document
.getElementById("submit")
.addEventListener(
"click",
function writeUserData(username, email, text, message) {
username = document.getElementById("username").value;
email = document.getElementById("email").value;
text = document.getElementById("text").value;
message = document.getElementById("message").value;
set(ref(database, "users/"), {
username: username,
email: email,
text: text,
message: message,
})

.then(() => {
// Data saved successfully!
console.log('success')
})
.catch((error) => {
// The write failed...
console.log(err)
});

}
);

// Ini);
</script>


</body>
</html>
14 changes: 14 additions & 0 deletions contanct.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>contact</title>
</head>
<body>
<div>OUR CONTACTS</div>
<div>Paneno Crime and security watch</div>
<div>+254733797965, +254732272772, 0722168844</div>
<div>[email protected]</div>
</body>
</html>
78 changes: 78 additions & 0 deletions covid.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>

<div class="tittle">
<img src="firm.png" class="tittle-details">

<div class="menu">

<a href="#paneno.html">Home </a>
<div class="menu2">
<button type="button"class="subnavbtn">About Us</button>
<div class="dropup-content" >
<a href="vision.html">Vision,Mision and Core Values</a><br>
<a href="whatwedo.html">What we do</a><br>
<a href="team.html">Our Team</a>

</div></div>
<div class="menu2">
<button type="button"class="subnavbtn">Services</button>
<div class="dropup-content">
<a href="training.html">Trainings</a><br>
<a href="otherservices.html">Other Services</a><br>
<a href="covid.html">Covid Pandemic</a>

</div></div>
<a href="contact.html">Contact</a>
</div>
<div class="covid">
<h1 padding="30px" color="black">COVID – 19 PANDEMIC</h1>
<p>
<h1>Deconstructing the Covid 19 Pandemic- Security and Criminological Perspective</h1>

I open this argument with the famous words of Martin Njemoller (1892-1984) …. “First they came for the socialists and I did not speak out because I was not a socialist. Then they came for the trade unionists and I did not speak out because I was not a trade unionist. Then they came for the Jews but I did not speak out because I was not a Jew. Then they came for me and there was no one left to speak for me.<br><br>

The Covid 19 pandemic is a global health crisis and most likely an economic crime with characteristics that border on bioterrorism. If this hypothesis is true, then the parties responsible should be in Jail for infringement on basic human rights and freedoms and the resultant mass murders and grievous bodily harm as a result of the pandemic and /or, its related vaccines.<br><br>

One of the hallmarks of a sovereign state in the contemporary international system is its ability to guarantee the security of its citizens and territory. It is therefore, the constitutional mandate of every democratic state to ensure that individual rights and freedoms are guaranteed and protected. These human rights form an important framework for socio-economic and cultural development and include the right to life.<br><br>

Despite the net effect the pandemic has had globally on socio-economic development and human security, the loud silence from the international community on those who are culpable leaves a lot to be desired. The international community has a responsibility to inspire confidence on matters security and safety in addition to upholding human rights and freedoms ever, more so in times of crisis such as now during the Covid 19 pandemic. Many have lost lives, livelihoods, and freedoms not to mention the freedom of gathering and worship but despite this blatant infringement of the right to life and personal liberty, few human rights bodies and activists have risen to condemn the contravention.<br><br>

As cases of virus contraction and hospitalizations continue to rise globally, it has also been observed that there is a surge in Covid cases in countries that are fully vaccinated such as Gibralter, Iceland and Israel. This observation does raise questions on whether such vaccination is likely to be a medical error that is creating more complicated variants. Whereas it is important to develop COVID-19 treatments, any policy coercing individuals to take a Covid 19 vaccine without provision of adequate information on the resultant short and long term risks is not only immoral and unethical but also illegal. After all, any instruction, order, or regulation that is inconsistent with the spirit of the constitution is void to the extent of the inconsistency, and any act or omission in contravention of the spirit of the constitution is a nullity.<br><br>

In line with this, the office of the head of public service is thus out of order in coercing civil servants to take the vaccine. It is inadvertently incriminating itself by advancing the sinister agenda of criminals who mooted the Covid 19 virus and who should now be facing criminal charges in the International Criminal Court (ICC). As has always been the case with crimes of this nature, the US should have been the first to condemn the crime, then offer a reward to anyone with information leading to the arrest, transfer or conviction of the suspects. Its silence on this is suspect, or may be something is being done, and if so, then the first scene of crime should be somewhere in Wuhan, China. If not, this will however be a bad precedent that may exacerbate the notion that the international criminal court (ICC) is only meant for Africans.<br><br>

The vaccine’s questionable efficacy would therefore require that concerted efforts not be aimed at coercing individuals into taking vaccines (which in my view is a certain clique’s sinister and fraudulent agenda). Government efforts should be focused on finding a lasting balance between health, human rights and security for its populace by enforcing the law against any supposed criminal masterminds who may even right now be in the process of creating newer versions of the Covid 19 virus construed as new strains caused by antibody dependent enhancements (ADE). The role of the media, with its powerful positive potential in bringing attitudinal change and disseminating information is an important one in this multi-agency approach. Equally, the church, religious and civil society organisations have a role to play in creating a healthy balance of access to health services and respect of human rights and freedoms while condemning corruption and ensuring justice against perpetrators of evil agendas. Security agencies globally should also act with agility to probe the Covid 19 pandemic debacle and bring all suspects to book.<br><br>
</p>
<div class="address">
<p>
Dr Panuel Mwaeke, PhD.<br>

Director and Founder, <br>

Paneno Crime, Security and Safety Watch Limited.<br>

<u>[email protected]; [email protected]; [email protected] </u><br><br><br><br>
</p>
<p>

<b>Also</b><br>

Lecturer<br>

Egerton University,<br>

Department of Peace, Security and Social studies.</p>
</div>

<footer>copyright 2023-Paneno Security</footer>

</body>
</html>
Loading

0 comments on commit 66ff823

Please sign in to comment.