CoolFace
Apppublic

ChipGee/crispy-threads-couture

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
index.html60 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Crispy Threads Couture | Fashionably Toasted Apparel</title>7<link rel="stylesheet" href="style.css">8    <script src="https://cdn.tailwindcss.com"></script>9    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>10    <script src="https://unpkg.com/feather-icons"></script>11    <script src="components/navbar.js"></script>12    <script src="components/hero.js"></script>13    <script src="components/featured.js"></script>14    <script src="components/footer.js"></script>15    <script>16        tailwind.config = {17            theme: {18                extend: {19                    colors: {20                        toast: {21                            100: '#FFF5EB',22                            200: '#FEE7D1',23                            300: '#FDD0A2',24                            400: '#FDB474',25                            500: '#FD8D3C',26                            600: '#E67329',27                            700: '#C45A1F',28                            800: '#A14216',29                            900: '#7F2A0D',30                        },31                        charcoal: {32                            100: '#F5F5F5',33                            200: '#E5E5E5',34                            300: '#D4D4D4',35                            400: '#A3A3A3',36                            500: '#737373',37                            600: '#525252',38                            700: '#404040',39                            800: '#262626',40                            900: '#171717',41                        }42                    }43                }44            }45        }46    </script>47</head>48<body class="bg-toast-100 font-sans">49    <custom-navbar></custom-navbar>50    <custom-hero></custom-hero>51    <custom-featured></custom-featured>52    <custom-footer></custom-footer>53 54    <script>55        feather.replace();56    </script>57    <script src="script.js"></script>58<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>59</body>60</html>