| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Shoots - FlowFlex</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 50: '#f0f9ff', |
| 100: '#e0f2fe', |
| 200: '#bae6fd', |
| 300: '#7dd3fc', |
| 400: '#38bdf8', |
| 500: '#0ea5e9', |
| 600: '#0284c7', |
| 700: '#0369a1', |
| 800: '#075985', |
| 900: '#0c4a6e', |
| }, |
| secondary: { |
| 50: '#fdf4ff', |
| 100: '#fae8ff', |
| 200: '#f5d0fe', |
| 300: '#f0abfc', |
| 400: '#e879f9', |
| 500: '#d946ef', |
| 600: '#c026d3', |
| 700: '#a21caf', |
| 800: '#86198f', |
| 900: '#701a75', |
| } |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="bg-gray-50 min-h-screen"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="container mx-auto px-4 py-6 max-w-6xl"> |
| |
| <div class="bg-white rounded-xl shadow-sm p-6 mb-6"> |
| <div class="flex flex-col md:flex-row items-center justify-between"> |
| <div> |
| <h1 class="text-2xl font-bold text-gray-900">Shoots</h1> |
| <p class="text-gray-600 mt-1">Discover short videos from creators worldwide</p> |
| </div> |
| <button class="mt-4 md:mt-0 px-6 py-3 bg-primary-500 text-white rounded-lg hover:bg-primary-600 transition-colors duration-200"> |
| <i data-feather="plus" class="w-4 h-4 mr-2"></i> |
| Create Shoot |
| </button> |
| </div> |
| </div> |
|
|
| |
| <div id="video-feed" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4"> |
| |
| </div> |
|
|
| |
| <div id="loading" class="text-center py-8"> |
| <div class="animate-spin rounded-full h-12 w-12 border-b-2 border-primary-500 mx-auto"></div> |
| <p class="text-gray-600 mt-2">Loading videos...</p> |
| </div> |
| </main> |
|
|
| <custom-footer></custom-footer> |
|
|
| |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="components/auth-modal.js"></script> |
|
|
| |
| <script src="script.js"></script> |
|
|
| |
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |