-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (30 loc) · 1.09 KB
/
Copy pathindex.php
File metadata and controls
32 lines (30 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
session_start();
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Promptly</title>
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" href="assets/images/site/promptly-logo.svg" type="image/x-icon">
<link rel="stylesheet" href="css/home-page.css">
</head>
<body>
<header>
<?php include_once(__DIR__ . '/partials/nav.inc.php'); ?>
<section id="home-hero-section">
<h1>This is <span class="blue-text">Promptly</span></h1>
<p>A platform where you can find, sell, and get prompts quickly.<br>Check out the 2 most popular prompts of the day below!</p>
<div id="home-hero-cards">
<div></div>
<div></div>
</div>
</section>
</header>
<section style="margin-top: 6rem; text-align: center; color: var(--red);">
<h2>This page is work in progress!</h2>
</section>
</body>
</html>