oldmonk69 commited on
Commit
50080a7
·
verified ·
1 Parent(s): c8c2043

To ensure proper alignment, formatting, line spacing and font selection are appropriate, one must pay close attention to details during the writing process.

Browse files
Files changed (1) hide show
  1. index.html +58 -44
index.html CHANGED
@@ -4,30 +4,14 @@
4
  <meta charset="utf-8" />
5
  <meta content="width=device-width, initial-scale=1.0" name="viewport" />
6
  <title>NeuralNomadAI - Integrated Website</title>
 
7
  <!-- Google Fonts -->
8
  <link href="https://fonts.googleapis.com" rel="preconnect" />
9
  <link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect" />
10
- <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
11
  <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet"/>
12
- <style>
13
- body {
14
- line-height: 1.6;
15
- letter-spacing: 0.01em;
16
- }
17
- h1, h2, h3, h4, h5, h6 {
18
- line-height: 1.3;
19
- margin-bottom: 0.75em;
20
- }
21
- p {
22
- margin-bottom: 1.25em;
23
- }
24
- .container {
25
- max-width: 1200px;
26
- margin: 0 auto;
27
- padding: 0 1rem;
28
- }
29
- </style>
30
- <!-- Tailwind CSS -->
31
  <script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
32
  <script>
33
  // Tailwind CSS Configuration
@@ -37,25 +21,13 @@
37
  extend: {
38
  colors: {
39
  primary: "#1193d4",
40
- "background-light": "#f8fafc",
41
- "background-dark": "#0f172a",
42
  },
43
  fontFamily: {
44
  display: ["Space Grotesk", "sans-serif"],
45
- body: ["Space Grotesk", "sans-serif"],
46
- },
47
- lineHeight: {
48
- tight: 1.25,
49
- snug: 1.375,
50
- normal: 1.6,
51
- relaxed: 1.75,
52
- },
53
- letterSpacing: {
54
- tight: '-0.015em',
55
- normal: '0.01em',
56
- wide: '0.03em',
57
  },
58
- borderRadius: {
59
  DEFAULT: "0.25rem",
60
  lg: "0.5rem",
61
  xl: "0.75rem",
@@ -66,6 +38,23 @@ borderRadius: {
66
  };
67
  </script>
68
  <style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  /* Helper class to ensure smooth transitions */
70
  .page-content {
71
  display: none;
@@ -73,6 +62,31 @@ borderRadius: {
73
  .page-content.active {
74
  display: block;
75
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  </style>
77
  </head>
78
 
@@ -310,14 +324,14 @@ borderRadius: {
310
  <button class="flex items-center gap-1 rounded-lg bg-gray-200/50 px-3 py-1.5 text-sm font-medium text-gray-600 hover:bg-gray-200/80 dark:bg-gray-700/50 dark:text-gray-300 dark:hover:bg-gray-700/80">Case Studies</button>
311
  </div>
312
  <div class="mt-8 grid grid-cols-1 gap-x-6 gap-y-10 sm:grid-cols-2 lg:grid-cols-3 xl:gap-x-8">
313
- <div class="group relative cursor-pointer">
314
- <div class="aspect-h-1 aspect-w-1 w-full overflow-hidden rounded-lg bg-gray-200 dark:bg-gray-800">
315
- <img alt="AI-Enhanced Photography" class="h-full w-full object-cover object-center transition-all duration-300 group-hover:scale-105" src="https://lh3.googleusercontent.com/aida-public/AB6AXuDvmGE_Zb6aPm670pgnpAw0KRDfSds0OYsFgEE6rmjvuivARi9h6IWaiVQW1ZWTDIjL2oBEcUSKn1ZjY095Ib5et_egVNlXW-0hgCV-FQxBoFg6vwYM5C-c_ZTFb-5iHUCf7ojvDirc7fJW8Qx2sUXXflh4SajNyEd-I8t53xE9KaMTYe8ezoOS58dcHCQihbQNPeRf03ouoRBbt3lBlSFI5IEW7yP70y25SWX7uzeD-HRwyCFPtxtDWIV-pUH5FYlrwXVr3_Qzx6A" />
316
- </div>
317
- <div class="mt-4">
318
- <h3 class="text-base font-semibold text-gray-900 dark:text-white">Project: AI-Enhanced Photography</h3>
319
- <p class="mt-1 text-sm text-gray-500 dark:text-gray-400">Enhancing photography with AI for stunning visuals.</p>
320
  </div>
 
 
 
 
321
  </div>
322
  <div class="group relative cursor-pointer">
323
  <div class="aspect-h-1 aspect-w-1 w-full overflow-hidden rounded-lg bg-gray-200 dark:bg-gray-800">
@@ -570,8 +584,8 @@ borderRadius: {
570
  <a class="text-sm text-gray-500 hover:text-primary dark:text-gray-400" href="#">Privacy Policy</a>
571
  <a class="text-sm text-gray-500 hover:text-primary dark:text-gray-400" href="#">Contact Us</a>
572
  </div>
573
- <p class="text-sm text-gray-500 dark:text-gray-400">© 2025 NeuralNomadAI. All rights reserved.</p>
574
- </div>
575
  </div>
576
  </footer>
577
  </div>
 
4
  <meta charset="utf-8" />
5
  <meta content="width=device-width, initial-scale=1.0" name="viewport" />
6
  <title>NeuralNomadAI - Integrated Website</title>
7
+
8
  <!-- Google Fonts -->
9
  <link href="https://fonts.googleapis.com" rel="preconnect" />
10
  <link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect" />
11
+ <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&amp;display=swap" rel="stylesheet" />
12
  <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet"/>
13
+
14
+ <!-- Tailwind CSS -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  <script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
16
  <script>
17
  // Tailwind CSS Configuration
 
21
  extend: {
22
  colors: {
23
  primary: "#1193d4",
24
+ "background-light": "#f6f7f8",
25
+ "background-dark": "#101c22",
26
  },
27
  fontFamily: {
28
  display: ["Space Grotesk", "sans-serif"],
 
 
 
 
 
 
 
 
 
 
 
 
29
  },
30
+ borderRadius: {
31
  DEFAULT: "0.25rem",
32
  lg: "0.5rem",
33
  xl: "0.75rem",
 
38
  };
39
  </script>
40
  <style>
41
+ /* Typography and Layout Improvements */
42
+ body {
43
+ font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont,
44
+ sans-serif;
45
+ line-height: 1.6;
46
+ letter-spacing: 0.01em;
47
+ }
48
+
49
+ h1, h2, h3, h4 {
50
+ letter-spacing: -0.025em;
51
+ line-height: 1.2;
52
+ }
53
+
54
+ p {
55
+ max-width: 65ch;
56
+ }
57
+
58
  /* Helper class to ensure smooth transitions */
59
  .page-content {
60
  display: none;
 
62
  .page-content.active {
63
  display: block;
64
  }
65
+
66
+ /* Consistent spacing */
67
+ section {
68
+ padding: 4rem 0;
69
+ }
70
+
71
+ /* Better form controls */
72
+ input, textarea, select {
73
+ transition: all 0.2s ease;
74
+ padding: 0.75rem 1rem;
75
+ }
76
+
77
+ /* Improved button styling */
78
+ button {
79
+ transition: all 0.2s ease;
80
+ }
81
+
82
+ /* Grid and flex consistency */
83
+ .grid {
84
+ gap: 2rem;
85
+ }
86
+
87
+ .flex {
88
+ gap: 1rem;
89
+ }
90
  </style>
91
  </head>
92
 
 
324
  <button class="flex items-center gap-1 rounded-lg bg-gray-200/50 px-3 py-1.5 text-sm font-medium text-gray-600 hover:bg-gray-200/80 dark:bg-gray-700/50 dark:text-gray-300 dark:hover:bg-gray-700/80">Case Studies</button>
325
  </div>
326
  <div class="mt-8 grid grid-cols-1 gap-x-6 gap-y-10 sm:grid-cols-2 lg:grid-cols-3 xl:gap-x-8">
327
+ <div class="group relative cursor-pointer transition-all duration-300 hover:-translate-y-1">
328
+ <div class="aspect-square w-full overflow-hidden rounded-xl bg-gray-200 dark:bg-gray-800 shadow-md">
329
+ <img alt="AI-Enhanced Photography" class="h-full w-full object-cover object-center transition-all duration-300 group-hover:scale-105" src="https://lh3.googleusercontent.com/aida-public/AB6AXuDvmGE_Zb6aPm670pgnpAw0KRDfSds0OYsFgEE6rmjvuivARi9h6IWaiVQW1ZWTDIjL2oBEcUSKn1ZjY095Ib5et_egVNlXW-0hgCV-FQxBoFg6vwYM5C-c_ZTFb-5iHUCf7ojvDirc7fJW8Qx2sUXXflh4SajNyEd-I8t53xE9KaMTYe8ezoOS58dcHCQihbQNPeRf03ouoRBbt3lBlSFI5IEW7yP70y25SWX7uzeD-HRwyCFPtxtDWIV-pUH5FYlrwXVr3_Qzx6A" />
 
 
 
 
330
  </div>
331
+ <div class="mt-4 px-2">
332
+ <h3 class="text-lg font-semibold text-gray-900 dark:text-white">AI-Enhanced Photography</h3>
333
+ <p class="mt-2 text-sm text-gray-600 dark:text-gray-300 leading-relaxed">Enhancing photography with AI for stunning visuals through our proprietary algorithms.</p>
334
+ </div>
335
  </div>
336
  <div class="group relative cursor-pointer">
337
  <div class="aspect-h-1 aspect-w-1 w-full overflow-hidden rounded-lg bg-gray-200 dark:bg-gray-800">
 
584
  <a class="text-sm text-gray-500 hover:text-primary dark:text-gray-400" href="#">Privacy Policy</a>
585
  <a class="text-sm text-gray-500 hover:text-primary dark:text-gray-400" href="#">Contact Us</a>
586
  </div>
587
+ <p class="text-sm text-gray-600 dark:text-gray-300 tracking-wide">© 2025 NeuralNomadAI. All rights reserved.</p>
588
+ </div>
589
  </div>
590
  </footer>
591
  </div>