18 lines
652 B
PHP
18 lines
652 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Trending Searches</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5">
|
|
<h1>Trending Searches</h1>
|
|
<p>This is a placeholder for the trending searches. In the future, this page will display a list of the most popular searches in real-time.</p>
|
|
<a href="index.php">Back to search</a>
|
|
</div>
|
|
</body>
|
|
</html>
|