Skip to content

Commit 2cd4c0f

Browse files
authored
Create index.html
1 parent 1ddbcf3 commit 2cd4c0f

1 file changed

Lines changed: 150 additions & 0 deletions

File tree

index.html

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
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>MetaObjects - Enterprise Metadata Driven Development</title>
7+
<style>
8+
body {
9+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
10+
line-height: 1.6;
11+
margin: 0;
12+
padding: 0;
13+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
14+
color: #333;
15+
min-height: 100vh;
16+
}
17+
.container {
18+
max-width: 1200px;
19+
margin: 0 auto;
20+
padding: 20px;
21+
}
22+
.header {
23+
text-align: center;
24+
padding: 40px 0;
25+
color: white;
26+
}
27+
.logo {
28+
font-size: 3rem;
29+
font-weight: bold;
30+
margin-bottom: 10px;
31+
}
32+
.tagline {
33+
font-size: 1.2rem;
34+
margin-bottom: 30px;
35+
opacity: 0.9;
36+
}
37+
.content {
38+
background: white;
39+
padding: 40px;
40+
border-radius: 10px;
41+
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
42+
margin: 20px 0;
43+
}
44+
.section {
45+
margin-bottom: 30px;
46+
}
47+
.section h2 {
48+
color: #667eea;
49+
border-bottom: 2px solid #667eea;
50+
padding-bottom: 10px;
51+
}
52+
.contact-info {
53+
background: #f8f9fa;
54+
padding: 20px;
55+
border-radius: 8px;
56+
margin-top: 20px;
57+
}
58+
.contact-info h3 {
59+
margin-top: 0;
60+
color: #495057;
61+
}
62+
.contact-item {
63+
margin: 10px 0;
64+
}
65+
.contact-item a {
66+
color: #667eea;
67+
text-decoration: none;
68+
}
69+
.contact-item a:hover {
70+
text-decoration: underline;
71+
}
72+
.features {
73+
display: grid;
74+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
75+
gap: 20px;
76+
margin: 30px 0;
77+
}
78+
.feature {
79+
background: #f8f9fa;
80+
padding: 20px;
81+
border-radius: 8px;
82+
border-left: 4px solid #667eea;
83+
}
84+
.feature h3 {
85+
margin-top: 0;
86+
color: #495057;
87+
}
88+
</style>
89+
</head>
90+
<body>
91+
<div class="container">
92+
<header class="header">
93+
<div class="logo">MetaObjects</div>
94+
<div class="tagline">Enterprise Metadata Driven Development</div>
95+
</header>
96+
97+
<div class="content">
98+
<div class="section">
99+
<h2>Welcome to MetaObjects</h2>
100+
<p>MetaObjects is a cutting-edge platform that revolutionizes enterprise software development through metadata-driven approaches. We empower organizations to build, deploy, and maintain complex applications with unprecedented speed and accuracy.</p>
101+
</div>
102+
103+
<div class="section">
104+
<h2>Our Solutions</h2>
105+
<div class="features">
106+
<div class="feature">
107+
<h3>Metadata-Driven Architecture</h3>
108+
<p>Transform your development process with our innovative metadata-driven architecture that reduces development time and increases maintainability.</p>
109+
</div>
110+
<div class="feature">
111+
<h3>Enterprise Integration</h3>
112+
<p>Seamlessly integrate with existing enterprise systems and databases through our comprehensive integration framework.</p>
113+
</div>
114+
<div class="feature">
115+
<h3>Rapid Development</h3>
116+
<p>Accelerate your development cycles with our automated code generation and deployment tools.</p>
117+
</div>
118+
<div class="feature">
119+
<h3>Scalable Solutions</h3>
120+
<p>Build applications that scale with your business needs, from small teams to enterprise-wide deployments.</p>
121+
</div>
122+
</div>
123+
</div>
124+
125+
<div class="section">
126+
<h2>Why Choose MetaObjects?</h2>
127+
<ul>
128+
<li><strong>Proven Track Record:</strong> Years of experience in enterprise software development</li>
129+
<li><strong>Innovation:</strong> Cutting-edge technology and methodologies</li>
130+
<li><strong>Flexibility:</strong> Adaptable solutions for diverse business requirements</li>
131+
<li><strong>Support:</strong> Comprehensive support and consulting services</li>
132+
</ul>
133+
</div>
134+
135+
<div class="contact-info">
136+
<h3>Get in Touch</h3>
137+
<div class="contact-item">
138+
<strong>Website:</strong> <a href="https://www.metaobjects.com" target="_blank">www.metaobjects.com</a>
139+
</div>
140+
<div class="contact-item">
141+
<strong>Email:</strong> <a href="mailto:info@metaobjects.com">info@metaobjects.com</a>
142+
</div>
143+
<div class="contact-item">
144+
<strong>Location:</strong> United States of America
145+
</div>
146+
</div>
147+
</div>
148+
</div>
149+
</body>
150+
</html>

0 commit comments

Comments
 (0)