Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 44 additions & 1 deletion vanilla/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,50 @@ <h1>Coremob Camera</h1>
<div class="swiper-container"></div>
<div class="pagination"></div>
</section>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download After Effects Project</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Download After Effects Project</h1>
<p>Click the button below to download the After Effects project file.</p>
<a href="path/to/your/project.aep" download class="download-button">Download Project</a>
</div>

<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
}
.container {
text-align: center;
}
.download-button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #007bff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.download-button:hover {
background-color: #0056b3;
}
</style>
</body>
</html>


<!-- Photo Preview -->
<section id="photoEffect" hidden>
Expand Down