Skip to content

Commit

Permalink
Added superhero
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysharm committed Feb 17, 2024
1 parent a586da0 commit 3505760
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 28 deletions.
2 changes: 1 addition & 1 deletion apps/codecomplete/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<body>
<div class="imageWrapper">
<div class="headerBackground">
<div class="container-landscape">
<div class="container">
<div class="iphonePreview">
<div class="device device-ipad-pro">
<div class="device-frame">
Expand Down
3 changes: 1 addition & 2 deletions apps/codecomplete/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ a:link,a:hover,a:visited,a:active {
grid-template-columns: repeat(12, 1fr);
grid-template-rows: 115px 876px auto auto;
grid-column-gap: 30px;
grid-template-areas: "h h h h h h h h h h h h" "p p p p p i i i i i i i" "c c c c c c c c c c c c" "f f f f f f f f f f f f"
grid-template-areas: "h h h h h h h h h h h h" "p p p p p p i i i i i i" "c c c c c c c c c c c c" "f f f f f f f f f f f f"
}

.container-landscape {
Expand Down Expand Up @@ -377,7 +377,6 @@ nav>ul li a:hover,nav>ul li a:active {
background-color: #000;
background-size: 400px auto;
background-repeat: no-repeat;
margin-top: 68px
}

.iphoneScreen {
Expand Down
Binary file added apps/moodlight/appstore.webp
Binary file not shown.
6 changes: 3 additions & 3 deletions apps/moodlight/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ <h2 class="appSubtitle"></h2>
},
},
store: {
enabled: false,
link: '',
image: ''
enabled: true,
link: 'https://apps.apple.com/ca/app/moodlight/id1509079068',
image: 'appstore.webp'
},
features: {
items: [
Expand Down
Binary file added apps/princess-colouring-bool/appstore.webp
Binary file not shown.
Binary file added apps/superhero-colouring-book/appstore.webp
Binary file not shown.
40 changes: 20 additions & 20 deletions apps/superhero-colouring-book/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<body>
<div class="imageWrapper">
<div class="headerBackground">
<div class="container">
<div class="iphonePreview">
<div class="device device-iphone-x">
<div class="container-landscape">
<div class="iphonePreview" style="display: flex;">
<div class="device device-iphone-x" style="margin: auto; transform: rotate(-90deg);">
<div class="device-frame">
<!-- <iframe
src="http://localhost:3000/embed/2e4e73aa25de73d85f74583e362e01987da2848942957645d1eb9cbf622d9195?dc=us-west-1&width=375&height=812"
Expand All @@ -22,7 +22,7 @@
title="My Demo App"
style="border:none; border-radius: 40px;">
</iframe> -->
<img src="" alt="" width="375" height="812" style="background-color: #CCC; border-radius: 40px;">
<img src="superhero.gif" alt="" width="375" height="812" style="background-color: #CCC; border-radius: 40px;">
</div>
<div class="device-stripe"></div>
<div class="device-header"></div>
Expand Down Expand Up @@ -69,10 +69,10 @@ <h2 class="appSubtitle"></h2>

<script>
const app = {
name: 'My Cool App ♥️',
subtitle: 'Lorem ipsum dolor sit amet',
description: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
icon: null,
name: 'Colouring Superheroes',
subtitle: 'Paint Your Favourite Superhero',
description: 'A powerful and unstoppable game for young superheroes all over the world. Give your hero a canvas to explore their inner superpower. Be free to colour outside the lines and inspire them create! The app includes images to colour on, and an empty canvas to express creativity. Best used on tablets!',
icon: 'Icon.png',
footer: {
changelog: {
enabled: false,
Expand All @@ -88,44 +88,44 @@ <h2 class="appSubtitle"></h2>
},
},
store: {
enabled: false,
link: '',
image: ''
enabled: true,
link: 'https://apps.apple.com/ca/app/colouring-superheroes/id1511421866',
image: 'appstore.webp'
},
features: {
items: [
{
enabled: true,
icon: 'fa-walking',
title: 'Feature 1',
text: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy.'
title: 'Fun for all ages',
text: 'Fun colouring child-like superheroes for everyone.'
},
{
enabled: true,
icon: 'fa-walking',
title: 'Feature 2',
text: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy.'
title: 'Creativity development',
text: 'Help your child developer their inner creativity with all the colours of the rainbow.'
},
{
enabled: true,
icon: 'fa-walking',
title: 'Feature 3',
text: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy.'
title: 'Share It!',
text: 'Save your images and print or share them with your friends and family!'
},
{
enabled: true,
enabled: false,
icon: 'fa-walking',
title: 'Feature 4',
text: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy.'
},
{
enabled: true,
enabled: false,
icon: 'fa-walking',
title: 'Feature 5',
text: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy.'
},
{
enabled: true,
enabled: false,
icon: 'fa-walking',
title: 'Feature 6',
text: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy.'
Expand Down
3 changes: 1 addition & 2 deletions apps/superhero-colouring-book/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ a:link,a:hover,a:visited,a:active {
padding-left: 15px;
padding-right: 15px;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: auto auto auto auto auto;
grid-template-rows: auto 380px auto auto auto;
grid-column-gap: 30px;
grid-template-areas: "h h h h h h h h h h h h" "i i i i i i i i i i i i" "p p p p p p p p p p p p" "c c c c c c c c c c c c" "f f f f f f f f f f f f"
}
Expand Down Expand Up @@ -377,7 +377,6 @@ nav>ul li a:hover,nav>ul li a:active {
background-color: #000;
background-size: 400px auto;
background-repeat: no-repeat;
margin-top: 68px
}

.iphoneScreen {
Expand Down
Binary file added apps/superhero-colouring-book/superhero.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3505760

Please sign in to comment.