ahmedghani commited on
Commit
eebf98a
β€’
1 Parent(s): 61782e4

ekkel website

Browse files
Files changed (4) hide show
  1. Dockerfile +2 -0
  2. README.md +6 -3
  3. index.html +18 -0
  4. style.css +28 -0
Dockerfile ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ FROM nginxinc/nginx-unprivileged:alpine
2
+ COPY . /usr/share/nginx/html
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Ekkel.ai
3
- emoji: 😻
4
  colorFrom: red
5
- colorTo: purple
6
  sdk: docker
 
 
7
  pinned: false
 
8
  ---
9
 
10
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: Ekkel AI
3
+ emoji: πŸš€
4
  colorFrom: red
5
+ colorTo: green
6
  sdk: docker
7
+ app_port: 8080
8
+ fullWidth: true
9
  pinned: false
10
+ license: mit
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <meta property="og:url" content="https://huggingface-projects-diffusers-gallery.hf.space/">
7
+ <meta property="og:title" content="Ekkel AI">
8
+ <meta property="og:type" content="website">
9
+ <title>Ekkel AI</title>
10
+ <link rel="stylesheet" href="style.css" />
11
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.1/iframeResizer.contentWindow.min.js"></script>
12
+ </head>
13
+ <body>
14
+ <h1>Ekkel AI</h1>
15
+ <pre>Ekkel is a services based company.</pre>
16
+ <iframe src="https://www.ekkel.ai/" height="1000px" width="450px"></iframe>
17
+ </body>
18
+ </html>
style.css ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ padding: 2rem;
3
+ font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
+ }
5
+
6
+ h1 {
7
+ font-size: 16px;
8
+ margin-top: 0;
9
+ }
10
+
11
+ p {
12
+ color: rgb(107, 114, 128);
13
+ font-size: 15px;
14
+ margin-bottom: 10px;
15
+ margin-top: 5px;
16
+ }
17
+
18
+ .card {
19
+ max-width: 620px;
20
+ margin: 0 auto;
21
+ padding: 16px;
22
+ border: 1px solid lightgray;
23
+ border-radius: 16px;
24
+ }
25
+
26
+ .card p:last-child {
27
+ margin-bottom: 0;
28
+ }