This commit is contained in:
2024-09-18 15:51:13 +02:00
parent cfba225ffa
commit 60a7a54fbc
73 changed files with 2674 additions and 288 deletions

View File

@@ -0,0 +1,9 @@
import Blog_1 from '@/components/blogs/Blog_1'
export default function Herogpt() {
return (
<>
<Blog_1 />
</>
)
}

View File

@@ -1,4 +1,4 @@
import Abw2022_1 from '@/components/blogs/Abw2022_1'
import Abw2022_1 from '@/components/events/Abw2022_1'
export default function blockchainweek1() {
return (

View File

@@ -1,4 +1,4 @@
import Abw2022_2 from '@/components/blogs/Abw2022_2'
import Abw2022_2 from '@/components/events/Abw2022_2'
export default function blockchainweek2() {
return (

View File

@@ -4,6 +4,7 @@ import Communhero from '@/components/Communhero'
import Commevents from '@/components/Commevents'
import Events from '@/components/Events'
import Socials from '@/components/Socials'
import Blogposts from '@/components/Blogposts'
export default function community() {
return (
@@ -11,6 +12,8 @@ export default function community() {
<Communhero />
<Socials />
<Events />
<Blogposts />
</>
)
}