Navinspire commited on
Commit
e776076
·
verified ·
1 Parent(s): 9675f09

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +104 -0
index.html ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>The Navinspire IA Family</title>
7
+ <style>
8
+ body {
9
+ font-family: 'Arial', sans-serif;
10
+ margin: 0;
11
+ padding: 0;
12
+ display: flex;
13
+ justify-content: center;
14
+ align-items: center;
15
+ height: 100vh;
16
+ background-color: #ffffff;
17
+ text-align: center;
18
+ }
19
+ .container {
20
+ max-width: 800px;
21
+ padding: 20px;
22
+ }
23
+ h1 {
24
+ font-size: 2.5em;
25
+ margin-bottom: 20px;
26
+ }
27
+ p {
28
+ font-size: 1.2em;
29
+ line-height: 1.6;
30
+ margin-bottom: 30px;
31
+ }
32
+ h2 {
33
+ font-size: 2em;
34
+ margin-bottom: 15px;
35
+ }
36
+ .applications {
37
+ text-align: left;
38
+ margin-bottom: 40px;
39
+ }
40
+ .applications p {
41
+ font-size: 1.1em;
42
+ margin: 10px 0;
43
+ }
44
+ .links {
45
+ display: flex;
46
+ justify-content: center;
47
+ gap: 40px;
48
+ margin-top: 40px;
49
+ }
50
+ .links a {
51
+ display: inline-block;
52
+ font-size: 1.2em;
53
+ text-decoration: none;
54
+ color: black;
55
+ }
56
+ .links a img {
57
+ vertical-align: middle;
58
+ width: 40px;
59
+ height: 40px;
60
+ margin-right: 10px;
61
+ }
62
+ .logo {
63
+ text-align: center;
64
+ margin-bottom: 20px;
65
+ }
66
+ .logo img {
67
+ width: 200px;
68
+ }
69
+ </style>
70
+ </head>
71
+ <body>
72
+
73
+ <div class="container">
74
+ <!-- Centered logo at the top -->
75
+ <div class="logo">
76
+ <img src="https://res.cloudinary.com/dkd2y1e80/image/upload/v1725472812/d4cfefvpm6jteutrlh8b.svg" alt="Navinspire Logo">
77
+ </div>
78
+
79
+ <h1>The Navinspire IA Family</h1>
80
+ <p>
81
+ Welcome to the official Hugging Face organization for NavinInspire, and our innovative generative AI models!
82
+ To access these models, please visit one of the repositories and agree to the MIT license terms and acceptable use policy.
83
+ </p>
84
+
85
+ <h2>Applications:</h2>
86
+
87
+ <div class="applications">
88
+ <p><strong>Generative AI for Travel:</strong> Offering personalized recommendations and seamless user interactions.</p>
89
+ <p><strong>E-commerce and Generative AI:</strong> Creating interactive and personalized shopping experiences while enhancing business operations.</p>
90
+ <p><strong>Upcoming:</strong> Our NavinLLM models will be available on Hugging Face soon for non-commercial use under the Apache 2.0 license.</p>
91
+ </div>
92
+
93
+ <div class="links">
94
+ <a href="https://www.linkedin.com/company/navinspire/" target="_blank">
95
+ <img src="https://upload.wikimedia.org/wikipedia/commons/c/ca/LinkedIn_logo_initials.png" alt="LinkedIn Logo"> Visit our LinkedIn
96
+ </a>
97
+ <a href="www.navinspire.ai" target="_blank">
98
+ <img src="https://upload.wikimedia.org/wikipedia/commons/1/14/Globe_%28icon%29.svg" alt="Website Logo"> Visit our Website
99
+ </a>
100
+ </div>
101
+ </div>
102
+
103
+ </body>
104
+ </html>