Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
privatedev11 authored Oct 27, 2022
1 parent 6b1d9e4 commit 22c10d6
Show file tree
Hide file tree
Showing 14 changed files with 11,957 additions and 0 deletions.
Binary file added app/android-chrome-192x192.png
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 app/android-chrome-512x512.png
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 app/apple-touch-icon.png
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 app/favicon-16x16.png
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 app/favicon-32x32.png
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 app/favicon.ico
Binary file not shown.
68 changes: 68 additions & 0 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">

<style>
body {
font-family: 'Roboto', sans-serif;
}
</style>

<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>

<body>
<html>
<title>Quick Quotes App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<h1>Hello, here is your random quote:</h1>

<script type='text/javascript'>
function random_content(){
var tip=new Array()

tip[0]="Don't give up, you can do this!"
tip[1]="Mistakes make you stronger and smarter, don't worry about making them!"
tip[2]="Two things are infinite: the universe and human stupidity; and I'm not sure about the universe. - Albert Einstein"
tip[3]="Be yourself; everyone else is already taken. - Oscar Wilde"
tip[4]="Keep on trying, keep on pushing, keep on moving, keep on persevering. - Me"
tip[5]="You know you're in love when you can't fall asleep because reality is finally better than your dreams. - Dr. Seuss"
tip[6]="Be the change that you wish to see in the world. - Mahatma Gandhi"
tip[7]="A friend is someone who knows all about you and still loves you. - Elbert Hubbard"
tip[8]="Darkness cannot drive out darkness: only light can do that. Hate cannot drive out hate: only love can do that. - Martin Luther King Jr"
tip[9]="There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle. - Albert Einstein"
tip[10]="I have not failed. I've just found 10,000 ways that won't work. - Thomas A. Edison"
tip[11]="I am enough of an artist to draw freely upon my imagination. Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world. - Albert Einstein"
tip[12]="To the well-organized mind, death is but the next great adventure. - Albus Dumbledore, Harry Potter and the Philosipher's Stone"
tip[13]="You may say I'm a dreamer, but I'm not the only one. I hope someday you'll join us. And the world will live as one. - John Lennon"
tip[14]="It's no use going back to yesterday, because I was a different person then. - Lewis Carroll"
tip[15]="A person's a person, no matter how small. - Dr. Seuss"
tip[16]="Nothing is impossible, the word itself says 'I'm possible'! - Audrey Hepburn"
tip[17]="Peace begins with a smile.. - Mother Teresa"
tip[18]="Happiness is not something ready made. It comes from your own actions. - Dalai Lama XIV"
tip[19]="Whatever you are, be a good one. - Abraham Lincoln"
tip[20]="If you're reading this, congratulations, you're alive. If that's not something to smile about, then I don't know what is. - Chad Sugg"

var rt=Math.floor(Math.random()*tip.length)

document.write(tip[rt])



}
random_content()
</script>
<footer>
<h4>Made with &#10084; by <a href="https://privateme.bio.link">PrivateMe.</a></h4>
</footer>


</html>


</body>
1 change: 1 addition & 0 deletions app/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Binary file added assets/favicon.ico
Binary file not shown.
Binary file added assets/img/mockup.mp4
Binary file not shown.
Binary file added assets/img/portrait_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 22c10d6

Please sign in to comment.