NochuSearch/templates/index.html
2024-06-19 12:47:12 +00:00

31 lines
1.6 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nochu Search</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Playfair+Display">
<link rel="stylesheet" href="{{ url_for('static', filename='styles_index.css') }}">
</head>
<body>
<div class="search-page-container">
<h1 class="main-heading">Welcome to Nochu Search</h1>
<p class="sub-heading">Yet another de-googled search engine using Google's Search API.</p>
<form class="search-form" action="/search" method="get">
<input class="search-input" type="text" name="query" required>
<button class="search-button" type="submit">Search</button>
<button type="submit" formaction="/search/images" class="search-button image-search-button">Image Search</button>
</form>
</div>
<div class="browser-ad-container">
<h2 class="browser-ad-title">Discover Nochu Browser</h2>
<p class="browser-ad-description">Experience fast, secure, and seamless browsing with Nochu Browser. Built with .NET 6.0 and powered by WebView2, Nochu Browser is completely open-source and designed to provide a modern web experience.</p>
<a href="https://github.com/abrendan/Nochu" class="browser-download-button">Download Nochu Browser</a>
</div>
<footer class="footer">
<p class="footer-text-left">&copy; 2024 Nochu Search by abrendan</p>
<p class="footer-text-middle"><a href="https://www.abrendan.dev" class="footer-link">abrendan.dev</a></p>
<p class="footer-text-right"><a href="https://www.pexels.com/de-de/foto/kalt-schnee-strasse-dammerung-6469507/" class="footer-link">Background image by Karolina Kot</a></p>
</footer>
</body>
</html>