├── .env ├── README.md └── assets ├── js └── script.js ├── css └── style.css └── images └── iphone-wallpaper.png /.env: -------------------------------------------------------------------------------- 1 | USERNAME=Mercy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Release v3.0 -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- 1 | console.log('Test'); -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } -------------------------------------------------------------------------------- /assets/images/iphone-wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mercy231/GitHubFeatures/HEAD/assets/images/iphone-wallpaper.png --------------------------------------------------------------------------------