maa6 commited on
Commit
af8e50a
·
verified ·
1 Parent(s): 1933845

The company is called DOKUMENTARMINISTERIET AB

Browse files
Files changed (2) hide show
  1. README.md +7 -4
  2. index.html +189 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Nordic Documasters Saga
3
- emoji: 🐨
4
- colorFrom: red
5
  colorTo: red
 
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: Nordic DocuMasters Saga
3
+ colorFrom: pink
 
4
  colorTo: red
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
index.html CHANGED
@@ -1,19 +1,189 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>DOKUMENTARMINISTERIET AB | Nordic Documentary Films</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>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ primary: '#0F4C81', // Deep Nordic blue
17
+ secondary: '#E8C547', // Golden accent
18
+ dark: '#1A1A2E',
19
+ light: '#F8F9FA'
20
+ }
21
+ }
22
+ }
23
+ }
24
+ </script>
25
+ </head>
26
+ <body class="bg-light text-dark font-sans antialiased">
27
+ <custom-navbar></custom-navbar>
28
+
29
+ <main>
30
+ <!-- Hero Section -->
31
+ <section class="relative h-screen flex items-center justify-center overflow-hidden">
32
+ <div class="absolute inset-0 bg-black/50 z-10"></div>
33
+ <video autoplay muted loop class="absolute inset-0 w-full h-full object-cover">
34
+ <source src="https://static.videezy.com/system/resources/previews/000/052/107/original/Stockholm-Sweden-4K.mp4" type="video/mp4">
35
+ </video>
36
+ <div class="relative z-20 text-center px-4 max-w-4xl mx-auto">
37
+ <h1 class="text-5xl md:text-7xl font-bold text-white mb-6">DOKUMENTARMINISTERIET <span class="text-secondary">AB</span></h1>
38
+ <p class="text-xl text-white mb-8">Swedish documentary production company crafting cinematic truth since 2012</p>
39
+ <div class="flex gap-4 justify-center">
40
+ <a href="#films" class="bg-primary hover:bg-primary/90 text-white px-8 py-3 rounded-full font-medium transition-all">Our Films</a>
41
+ <a href="#about" class="bg-white/10 hover:bg-white/20 text-white px-8 py-3 rounded-full font-medium border border-white/30 transition-all">About Us</a>
42
+ </div>
43
+ </div>
44
+ <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 z-20 animate-bounce">
45
+ <a href="#films" class="text-white">
46
+ <i data-feather="chevron-down" class="w-10 h-10"></i>
47
+ </a>
48
+ </div>
49
+ </section>
50
+
51
+ <!-- Featured Films -->
52
+ <section id="films" class="py-20 bg-white">
53
+ <div class="container mx-auto px-4">
54
+ <div class="text-center mb-16">
55
+ <h2 class="text-4xl font-bold mb-4">DOKUMENTARMINISTERIET <span class="text-primary">Productions</span></h2>
56
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">Our award-winning films that explore Nordic culture, nature, and human stories</p>
57
+ </div>
58
+
59
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
60
+ <!-- Film 1 -->
61
+ <div class="group relative overflow-hidden rounded-xl shadow-lg transition-all hover:shadow-xl">
62
+ <div class="h-80 overflow-hidden">
63
+ <img src="http://static.photos/nature/1200x630/42" alt="Midnight Sun Chronicles" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
64
+ </div>
65
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-6">
66
+ <div>
67
+ <h3 class="text-white text-2xl font-bold mb-2">Midnight Sun Chronicles</h3>
68
+ <p class="text-white/80 mb-4">Exploring life above the Arctic Circle during perpetual daylight</p>
69
+ <a href="#" class="text-secondary font-medium flex items-center gap-2">
70
+ Watch Trailer
71
+ <i data-feather="play-circle" class="w-5 h-5"></i>
72
+ </a>
73
+ </div>
74
+ </div>
75
+ <div class="bg-white p-6">
76
+ <div class="flex justify-between items-start mb-2">
77
+ <h3 class="text-xl font-bold">Midnight Sun Chronicles</h3>
78
+ <span class="bg-primary/10 text-primary px-3 py-1 rounded-full text-sm font-medium">2023</span>
79
+ </div>
80
+ <p class="text-gray-600">Director: Erik Johansson</p>
81
+ </div>
82
+ </div>
83
+
84
+ <!-- Film 2 -->
85
+ <div class="group relative overflow-hidden rounded-xl shadow-lg transition-all hover:shadow-xl">
86
+ <div class="h-80 overflow-hidden">
87
+ <img src="http://static.photos/people/1200x630/23" alt="The Silent Forest" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
88
+ </div>
89
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-6">
90
+ <div>
91
+ <h3 class="text-white text-2xl font-bold mb-2">The Silent Forest</h3>
92
+ <p class="text-white/80 mb-4">A journey through Sweden's ancient woodlands and their keepers</p>
93
+ <a href="#" class="text-secondary font-medium flex items-center gap-2">
94
+ Watch Trailer
95
+ <i data-feather="play-circle" class="w-5 h-5"></i>
96
+ </a>
97
+ </div>
98
+ </div>
99
+ <div class="bg-white p-6">
100
+ <div class="flex justify-between items-start mb-2">
101
+ <h3 class="text-xl font-bold">The Silent Forest</h3>
102
+ <span class="bg-primary/10 text-primary px-3 py-1 rounded-full text-sm font-medium">2021</span>
103
+ </div>
104
+ <p class="text-gray-600">Director: Lena Andersson</p>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Film 3 -->
109
+ <div class="group relative overflow-hidden rounded-xl shadow-lg transition-all hover:shadow-xl">
110
+ <div class="h-80 overflow-hidden">
111
+ <img src="http://static.photos/cityscape/1200x630/7" alt="Stockholm Underground" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
112
+ </div>
113
+ <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-6">
114
+ <div>
115
+ <h3 class="text-white text-2xl font-bold mb-2">Stockholm Underground</h3>
116
+ <p class="text-white/80 mb-4">The untold stories beneath Sweden's capital city</p>
117
+ <a href="#" class="text-secondary font-medium flex items-center gap-2">
118
+ Watch Trailer
119
+ <i data-feather="play-circle" class="w-5 h-5"></i>
120
+ </a>
121
+ </div>
122
+ </div>
123
+ <div class="bg-white p-6">
124
+ <div class="flex justify-between items-start mb-2">
125
+ <h3 class="text-xl font-bold">Stockholm Underground</h3>
126
+ <span class="bg-primary/10 text-primary px-3 py-1 rounded-full text-sm font-medium">2019</span>
127
+ </div>
128
+ <p class="text-gray-600">Director: Mikael Bergman</p>
129
+ </div>
130
+ </div>
131
+ </div>
132
+
133
+ <div class="text-center mt-12">
134
+ <a href="#" class="inline-flex items-center gap-2 text-primary font-medium hover:text-primary/80 transition-colors">
135
+ View All Films
136
+ <i data-feather="arrow-right" class="w-5 h-5"></i>
137
+ </a>
138
+ </div>
139
+ </div>
140
+ </section>
141
+
142
+ <!-- About Section -->
143
+ <section id="about" class="py-20 bg-gray-50">
144
+ <div class="container mx-auto px-4">
145
+ <div class="flex flex-col lg:flex-row items-center gap-12">
146
+ <div class="lg:w-1/2">
147
+ <img src="http://static.photos/office/1200x630/15" alt="Our Studio in Gustavsberg" class="rounded-xl shadow-lg w-full">
148
+ </div>
149
+ <div class="lg:w-1/2">
150
+ <h2 class="text-4xl font-bold mb-6">The <span class="text-primary">DOKUMENTARMINISTERIET</span></h2>
151
+ <p class="text-lg text-gray-600 mb-6">Established in 2012, DOKUMENTARMINISTERIET AB is Sweden's premier documentary production house, dedicated to cinematic truth-telling and authentic storytelling.</p>
152
+ <p class="text-lg text-gray-600 mb-8">Our collective of award-winning filmmakers brings a distinctly Swedish perspective to global documentary production, combining journalistic rigor with artistic vision.</p>
153
+ <div class="flex flex-wrap gap-4">
154
+ <div class="flex items-center gap-3 bg-white px-6 py-4 rounded-lg shadow-sm">
155
+ <div class="bg-primary/10 p-3 rounded-full">
156
+ <i data-feather="award" class="text-primary w-6 h-6"></i>
157
+ </div>
158
+ <div>
159
+ <h4 class="font-bold">12+ Awards</h4>
160
+ <p class="text-sm text-gray-500">International recognition</p>
161
+ </div>
162
+ </div>
163
+ <div class="flex items-center gap-3 bg-white px-6 py-4 rounded-lg shadow-sm">
164
+ <div class="bg-primary/10 p-3 rounded-full">
165
+ <i data-feather="film" class="text-primary w-6 h-6"></i>
166
+ </div>
167
+ <div>
168
+ <h4 class="font-bold">25+ Films</h4>
169
+ <p class="text-sm text-gray-500">Documentaries produced</p>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ </section>
177
+
178
+ <!-- Testimonials -->
179
+ <section class="py-20 bg-primary text-white">
180
+ <div class="container mx-auto px-4">
181
+ <div class="text-center mb-16">
182
+ <h2 class="text-4xl font-bold mb-4">What People <span class="text-secondary">Say</span></h2>
183
+ <p class="text-lg text-white/80 max-w-2xl mx-auto">Hear from our collaborators and audiences</p>
184
+ </div>
185
+
186
+ <div class="grid grid-cols
187
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
188
+ </body>
189
+ </html>