Skip to content

Commit af7d67a

Browse files
authored
Merge pull request #2 from austrovis/fix/react2shell
Fix/react2shell
2 parents 47f7702 + cc2b063 commit af7d67a

5 files changed

Lines changed: 60 additions & 62 deletions

File tree

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const inter = Inter({
1010
});
1111

1212
const SITE_TITLE = 'AustroVis';
13-
const SITE_DESCRIPTION = 'A workshop series focused on visualization and visual analytics at Austrian institutions.';
13+
const SITE_DESCRIPTION = 'A community of researchers, students, and practitioners interested in data visualization and visual analytics in Austria.';
1414
const SITE_URL = 'https://austrovis.github.io';
1515

1616
export const metadata: Metadata = {

app/page.tsx

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ export default function Home() {
1414
<section className="relative min-h-[85vh] flex items-center justify-center px-6 border-b border-black/10 overflow-hidden">
1515
{/* Hero Image with Parallax */}
1616
<ParallaxHero />
17-
17+
1818
<div className="relative z-10 max-w-4xl mx-auto text-center animate-fade-in">
1919
<h1 className="text-5xl md:text-6xl font-bold tracking-tight mb-4 animate-slide-up">
2020
AustroVis
2121
</h1>
2222
<p className="text-lg md:text-xl text-black/70 mb-6 max-w-2xl mx-auto animate-slide-up" style={{ animationDelay: '0.1s' }}>
23-
A workshop series focused on visualization and visual analytics at Austrian universities.
23+
A community of researchers, students, and practitioners interested in data visualization and visual analytics in Austria.
2424
</p>
2525
<div className="flex flex-col sm:flex-row gap-3 justify-center animate-slide-up" style={{ animationDelay: '0.2s' }}>
2626
<a
@@ -47,6 +47,21 @@ export default function Home() {
4747
</div>
4848
</section>
4949

50+
{/* About Section */}
51+
<section id="about" className="py-16 px-6">
52+
<ScrollReveal>
53+
<div className="max-w-4xl mx-auto text-center">
54+
<h2 className="text-3xl font-bold mb-3">About the AustroVis Workshop</h2>
55+
<p className="text-base text-black/70 mb-4">
56+
The workshop brings together the visualization community in Austria to share knowledge and build connections.
57+
</p>
58+
<p className="text-base text-black/70">
59+
The AustroVis Workshop covers a wide range of topics in visualization, from fundamental visualization principles to advanced techniques in interactive visualization, visual analytics, and machine learning visualization.
60+
</p>
61+
</div>
62+
</ScrollReveal>
63+
</section>
64+
5065
{/* Upcoming Events */}
5166
<section id="events" className="py-16 px-6">
5267
<div className="max-w-7xl mx-auto">
@@ -95,23 +110,6 @@ export default function Home() {
95110
</div>
96111
</section>
97112

98-
{/* About Section */}
99-
<section id="about" className="py-16 px-6">
100-
<ScrollReveal>
101-
<div className="max-w-4xl mx-auto text-center">
102-
<h2 className="text-3xl font-bold mb-4">About AustroVis</h2>
103-
<p className="text-base text-black/70 mb-4">
104-
AustroVis is a collaborative workshop series bringing together researchers, students, and practitioners
105-
interested in data visualization and visual analytics across Austrian universities.
106-
</p>
107-
<p className="text-base text-black/70">
108-
Our workshops cover a wide range of topics, from fundamental visualization principles to advanced
109-
techniques in interactive visualization, visual analytics, and machine learning visualization.
110-
</p>
111-
</div>
112-
</ScrollReveal>
113-
</section>
114-
115113
{/* Newsletter Signup */}
116114
<ScrollReveal>
117115
<NewsletterSignup />

components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function Footer() {
66
<div>
77
<h3 className="text-xl font-bold mb-2">AustroVis</h3>
88
<p className="text-sm text-black/60 max-w-md">
9-
A workshop series focused on visualization and visual analytics at Austrian universities.
9+
A community of researchers, students, and practitioners interested in data visualization and visual analytics in Austria.
1010
</p>
1111
</div>
1212
<div className="flex flex-col gap-4">

package-lock.json

Lines changed: 40 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"react": "19.2.0",
1313
"react-dom": "19.2.0",
14-
"next": "16.0.1"
14+
"next": "16.0.7"
1515
},
1616
"devDependencies": {
1717
"typescript": "^5",

0 commit comments

Comments
 (0)