Skip to content

Commit 6c905f1

Browse files
committed
1.0.0
Release version, finished Research Journal page.
1 parent b093f64 commit 6c905f1

File tree

6 files changed

+84
-149
lines changed

6 files changed

+84
-149
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "blazed-space.github.io",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "1.0.0",
55
"type": "module",
66
"homepage": "https://blazed-space.github.io/#/",
77
"scripts": {

src/app/conduct.tsx

Lines changed: 0 additions & 133 deletions
This file was deleted.

src/app/contribute.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import Heading from "../components/heading";
22

3+
import './journal.css';
4+
35
const Contrubute = () => {
46

57
return (
@@ -117,13 +119,6 @@ const Contrubute = () => {
117119
</li>
118120
</ul>
119121

120-
<Heading title="Code of Conduct" />
121-
122-
<p className="py-5">
123-
Read and abide by our <a href="/#/code-of-conduct" className="text-blue-500 hover:underline">Code of Conduct</a>.
124-
We expect all contributors to follow these guidelines to ensure a positive and respectful community.
125-
</p>
126-
127122
<div className="relative mb-6 overflow-hidden rounded-lg bg-gray-100 shadow-lg md:mb-8">
128123
<img src="/images/lockscreen-beaker.png" loading="lazy" alt="Ibis Interactive" className="object-cover object-center" />
129124
</div>

src/app/journal.css

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
main .wrapper {
2+
padding: 0.7rem 1.3rem;
3+
max-width: 1000px;
4+
position:relative;
5+
margin: 0 auto;
6+
}
7+
8+
main section {
9+
margin-bottom: 30px;
10+
}
11+
12+
main h1{
13+
font-size:2.4rem;
14+
}
15+
16+
main h2 {
17+
font-size: 1.8rem;
18+
margin-bottom: 15px;
19+
color: #0070f3;
20+
}
21+
22+
main p {
23+
margin-bottom: 15px;
24+
font-size: 1rem;
25+
}
26+
27+
main ul {
28+
list-style: disc;
29+
margin-left: 20px;
30+
margin-bottom: 20px;
31+
}
32+
33+
main ul li {
34+
margin-bottom: 10px;
35+
}
36+
37+
main section a {
38+
color: #0070f3;
39+
text-decoration: none;
40+
}
41+
42+
main section a:hover {
43+
text-decoration: underline;
44+
}

src/app/journal.tsx

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,42 @@
11
const Journal = () => {
22
return (
3-
<p>
4-
Research journal
5-
</p>
3+
<div className="wrapper">
4+
<section>
5+
<h1>Blazed Space Research & Development Journal</h1>
6+
<p>Exploring innovation at the intersection of technology, design, and creative strategy</p>
7+
</section>
8+
<section>
9+
<h2>Our Mission</h2>
10+
<p>At Blazed Space, we believe research fuels innovation. By exploring emerging technologies, creative trends, and market behaviors, we help brands stay on the cutting edge of growth and creativity.</p>
11+
</section>
12+
13+
<section>
14+
<h2>Key Research Areas</h2>
15+
<ul>
16+
<li><strong>Emerging Technologies in Design:</strong> Exploring AI, 3D rendering, and other advanced tools to enhance creative processes.</li>
17+
<li><strong>User Behavior & Experience:</strong> Deep dives into user engagement, interface design, and behavioral insights.</li>
18+
<li><strong>Creative Strategy & Branding:</strong> Effective methods for building memorable, authentic brand identities.</li>
19+
</ul>
20+
</section>
21+
22+
<section>
23+
<h2>Featured Research Topics</h2>
24+
<ul>
25+
<li>Adaptive Web Interfaces: Enhancing engagement through personalized content delivery.</li>
26+
<li>Future of Digital Art: Leveraging AI-assisted workflows for creative agencies.</li>
27+
<li>Sustainable Brand Packaging: Balancing aesthetics with user-focused design.</li>
28+
<li>Human-Centered UX: Designing for accessibility and ease-of-use.</li>
29+
</ul>
30+
</section>
31+
32+
<section>
33+
<h2>Get Involved</h2>
34+
<p>We invite researchers, industry experts, and innovators to collaborate with us. Share your findings or contribute to future research projects.</p>
35+
<p>Contact us at: <a href="mailto:research@blazed.dev">research@blazed.dev</a>.</p>
36+
<p>Or online at: <a href="https://blazedlabs.com/contact">Click Here</a>.</p>
37+
</section>
38+
39+
</div>
640
);
741
};
842

src/main.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import Layout from './Layout';
99

1010
import Home from './app/home';
1111
import About from './app/about';
12-
import Conduct from './app/conduct';
1312
import Journal from './app/journal';
1413
import Contrubute from './app/contribute';
1514
import ErrorPage from './app/error';
@@ -27,10 +26,6 @@ const router = createHashRouter([
2726
path: "/about",
2827
element: <About />,
2928
},
30-
{
31-
path: "/code-of-conduct",
32-
element: <Conduct />
33-
},
3429
{
3530
path: "/contribute",
3631
element: <Contrubute />

0 commit comments

Comments
 (0)