add events
This commit is contained in:
9
src/app/community/blockchainweek1/page.jsx
Normal file
9
src/app/community/blockchainweek1/page.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import Abw2022_1 from '@/components/Abw2022_1'
|
||||
|
||||
export default function blockchainweek1() {
|
||||
return (
|
||||
<>
|
||||
<Abw2022_1 />
|
||||
</>
|
||||
)
|
||||
}
|
9
src/app/community/blockchainweek2/page.jsx
Normal file
9
src/app/community/blockchainweek2/page.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import Abw2022_2 from '@/components/Abw2022_2'
|
||||
|
||||
export default function blockchainweek2() {
|
||||
return (
|
||||
<>
|
||||
<Abw2022_2 />
|
||||
</>
|
||||
)
|
||||
}
|
@@ -8,7 +8,6 @@ export default function usecases() {
|
||||
<>
|
||||
<Usecases />
|
||||
<Casestudies />
|
||||
<FAQ />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
76
src/components/Abw2022_1.jsx
Normal file
76
src/components/Abw2022_1.jsx
Normal file
@@ -0,0 +1,76 @@
|
||||
import { CheckCircleIcon, InformationCircleIcon } from '@heroicons/react/20/solid'
|
||||
|
||||
export default function Abw2022_1() {
|
||||
return (
|
||||
<div className="bg-white px-6 py-32 lg:px-8">
|
||||
<div className="mx-auto max-w-3xl text-base leading-7 text-purple-700">
|
||||
<p className="text-base font-semibold leading-7 text-purple-600">Events</p>
|
||||
<h1 className="mt-2 text-3xl font-bold font-gradient tracking-tight text-gray-900 sm:text-4xl">Building a Metaverse with Revenue: Insights from Arab Meta Summit 2022 Day 2</h1>
|
||||
<p className="mt-6 text-xl leading-8">
|
||||
At the Arab Meta Summit 2022, Christopher K, co-founder of OurVerse and CEO of Aviva Technologies,
|
||||
shared valuable insights on how to build a successful and revenue-generating metaverse.
|
||||
</p>
|
||||
<div className="mt-10 max-w-2xl">
|
||||
<p>
|
||||
Christopher began by explaining the challenge of defining the metaverse, comparing it to the early days of the internet
|
||||
when explaining its potential was abstract. Today, the metaverse is often described as a network of 3D virtual worlds,
|
||||
providing an immersive experience, or a "3D model of the internet.
|
||||
</p>
|
||||
<p className="mt-8">
|
||||
Christopher emphasized that the metaverse introduces a new axis, fundamentally changing how we interact and experience
|
||||
the digital world. Unlike the internet, where users interact through flat screens, the metaverse allows for immersive 3D interactions,
|
||||
creating new possibilities for design, UI, and shared experiences. Users can enter virtual worlds through avatars in VR,
|
||||
augmented, or mixed reality, engaging with one another in ways not possible on traditional platforms like websites.
|
||||
</p>
|
||||
<h2 className="mt-16 text-2xl font-bold tracking-tight text-gray-900">Revenue Opportunities in the Metaverse</h2>
|
||||
<p className="mt-6">
|
||||
Generating revenue in the metaverse offers exciting new opportunities. One common avenue is through NFTs and 3D assets.
|
||||
Similar to platforms like Shutterstock or Fotolia for images, metaverse platforms provide libraries of 3D assets.
|
||||
These assets can be monetized by creators, either for free or as premium content.
|
||||
</p>
|
||||
<p className="mt-6">
|
||||
Christopher highlighted another important trend: companies and freelancers acting as "metaverse prescriptors" who design
|
||||
custom virtual spaces for clients. This partnership model fosters collaboration between brands, users, and metaverse platforms
|
||||
to deliver tailored experiences.
|
||||
</p>
|
||||
<p className="mt-6">Aviva Technologies also offers a shared revenue model through its Aviva Ambassadors program,
|
||||
which allows companies to onboard metaverse projects from different countries, leveraging a collective approach to development.
|
||||
</p>
|
||||
<h2 className="mt-16 text-2xl font-bold tracking-tight text-gray-900">Challenges and Future of the Metaverse</h2>
|
||||
<p className="mt-6">
|
||||
Despite the immense potential, there are challenges in metaverse adoption. The technology is still in its infancy,
|
||||
and user experiences vary across platforms. Additionally, issues around security, ownership, and tokenomics remain critical.
|
||||
Christopher suggested that while blockchain and NFTs offer promising solutions for asset ownership, careful due diligence
|
||||
is necessary to avoid risks associated with scams or hacks.
|
||||
</p>
|
||||
<p className="mt-6">
|
||||
As the metaverse continues to evolve, inclusivity is key. Ensuring that it is accessible to a broad audience
|
||||
means offering not just high-end VR experiences but also accessible desktop and mobile options. The goal is to reward creators
|
||||
for their contributions, foster innovation, and ensure that everyone—from gamers to brands—can participate and monetize
|
||||
their presence in this new digital frontier.
|
||||
</p>
|
||||
<p className="mt-6 italic text-gray-600">
|
||||
For more details, check out the full presentation on YouTube below.
|
||||
</p>
|
||||
</div>
|
||||
<figure className="mt-16">
|
||||
<div className="aspect-video rounded-xl bg-gray-50">
|
||||
<iframe
|
||||
width="100%"
|
||||
height="500"
|
||||
src="https://www.youtube.com/embed/-dT3zRcw3Ko?si=7xDurmdm2B0FmA75"
|
||||
title="YouTube video player"
|
||||
frameBorder="0"
|
||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
||||
allowFullScreen
|
||||
></iframe>
|
||||
</div>
|
||||
<figcaption className="mt-4 flex gap-x-2 text-sm leading-6 text-gray-500">
|
||||
<InformationCircleIcon aria-hidden="true" className="mt-0.5 h-5 w-5 flex-none text-gray-300" />
|
||||
Arab Blockchain Week 2022.
|
||||
</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
97
src/components/Abw2022_2.jsx
Normal file
97
src/components/Abw2022_2.jsx
Normal file
@@ -0,0 +1,97 @@
|
||||
import { CheckCircleIcon, InformationCircleIcon } from '@heroicons/react/20/solid'
|
||||
|
||||
export default function Abw2022_2() {
|
||||
return (
|
||||
<div className="bg-white px-6 py-32 lg:px-8">
|
||||
<div className="mx-auto max-w-3xl text-base leading-7 text-purple-700">
|
||||
<p className="text-base font-semibold leading-7 text-purple-600">Events</p>
|
||||
<h1 className="mt-2 text-3xl font-bold font-gradient tracking-tight text-gray-900 sm:text-4xl">Real-World Applications of the Metaverse in AR: Insights from Omrei Abu Madi at the Arab Meta Summit 2022</h1>
|
||||
<p className="mt-6 text-xl leading-8">
|
||||
During Day 1 of the Arab Meta Summit 2022, Omrei Abu Madi, co-founder of OurVerse and a visionary in both the tech and tourism industries, discussed the real-world applications of the Metaverse, particularly focusing on Augmented Reality (AR).
|
||||
</p>
|
||||
<div className="mt-10 max-w-2xl">
|
||||
<p>
|
||||
With over a decade of experience in the tech sector, Omrei highlighted how technology, specifically the Metaverse,
|
||||
is transforming various industries, enhancing human interactions, and creating immersive, digital experiences that can
|
||||
revolutionize the way we live, work, and interact.
|
||||
</p>
|
||||
<h2 className="mt-16 text-2xl font-bold tracking-tight text-gray-900">Merging Real and Virtual Worlds</h2>
|
||||
<p className="mt-6">
|
||||
Omrei began by explaining how the Metaverse merges the digital and physical worlds, creating a seamless environment
|
||||
where users can interact in real-time through avatars. In this virtual realm, individuals can use their creativity
|
||||
to design characters, objects, and innovative ways of interacting, similar to the real world but with limitless possibilities.
|
||||
By integrating AR into the Metaverse, these virtual interactions become even more realistic, enhancing the user experience.
|
||||
</p>
|
||||
<p className="mt-6">
|
||||
This merging of real and virtual worlds offers significant opportunities for industries like tourism, where customers can
|
||||
virtually explore destinations or hotel rooms before making any bookings. Omrei illustrated this by describing how his team
|
||||
developed an interactive virtual experience for the Arabian Travel Market in Dubai. Customers were able to virtually tour hotels
|
||||
and resorts, offering a tangible preview of what to expect in the real world. Such technology bridges the gap between expectation
|
||||
and reality, significantly improving the customer experience in the tourism industry.
|
||||
</p>
|
||||
<p className="mt-6">Aviva Technologies also offers a shared revenue model through its Aviva Ambassadors program,
|
||||
which allows companies to onboard metaverse projects from different countries, leveraging a collective approach to development.
|
||||
</p>
|
||||
<h2 className="mt-16 text-2xl font-bold tracking-tight text-gray-900">Real-World Applications Across Multiple Industries</h2>
|
||||
<p className="mt-6">
|
||||
Omrei emphasized that the applications of the Metaverse and AR go far beyond tourism. Real estate, for example, benefits immensely
|
||||
from virtual property tours, where clients can explore and interact with properties before purchasing. Similarly, e-commerce
|
||||
has found a home in the Metaverse, allowing customers to browse products in 3D, offering an engaging alternative to traditional online
|
||||
shopping. Customers can now experience products virtually as if they were in a physical store, helping them make more informed
|
||||
purchasing decisions.
|
||||
</p>
|
||||
<p className="mt-6">
|
||||
He also discussed how businesses can set up virtual stores or experiences in the Metaverse, offering new avenues for revenue generation.
|
||||
Retailers, for example, can lease virtual space to showcase products in a digital showroom or marketplace, reaching a broader audience
|
||||
without the need for physical infrastructure.
|
||||
</p>
|
||||
<h2 className="mt-16 text-2xl font-bold tracking-tight text-gray-900">Overcoming Technological Challenges</h2>
|
||||
<p className="mt-6">
|
||||
Omrei acknowledged the technological hurdles that exist in the Metaverse today, including the challenge of integrating
|
||||
high-quality virtual experiences while maintaining device compatibility. His team at Aviva Technologies worked extensively
|
||||
to optimize 3D environments for a variety of devices, ensuring that users could experience the Metaverse without needing high-end
|
||||
hardware.
|
||||
</p>
|
||||
<p className="mt-6">
|
||||
Another significant achievement Omrei highlighted was the creation of a scalable, immersive virtual environment that allows
|
||||
for massive virtual spaces. For instance, they developed a billion-square-meter virtual city where users from around the world can
|
||||
interact, buy, sell, and collaborate within a shared digital space. These advancements show how the Metaverse can be harnessed to
|
||||
create expansive, accessible, and engaging digital environments.
|
||||
</p>
|
||||
<h2 className="mt-16 text-2xl font-bold tracking-tight text-gray-900">The Future of Metaverse and AR</h2>
|
||||
<p className="mt-6">
|
||||
Looking ahead, Omrei stressed the importance of continuing to innovate and refine Metaverse technologies.
|
||||
He noted that as AR and Metaverse platforms evolve, they will offer more realistic and engaging experiences across industries,
|
||||
from real estate and e-commerce to entertainment and social media.
|
||||
</p>
|
||||
<p className="mt-6">
|
||||
In conclusion, Omrei Abu Madi’s presentation at the Arab Meta Summit 2022 illustrated the vast potential of
|
||||
the Metaverse and AR in real-world applications. By breaking down the barriers between the virtual and physical worlds,
|
||||
the Metaverse is set to revolutionize industries, enhance user experiences, and create new opportunities for businesses and
|
||||
individuals alike.
|
||||
</p>
|
||||
<p className="mt-6 italic text-gray-600">
|
||||
For more details, check out the full presentation (Arabic) on YouTube below.
|
||||
</p>
|
||||
</div>
|
||||
<figure className="mt-16">
|
||||
<div className="aspect-video rounded-xl bg-gray-50">
|
||||
<iframe
|
||||
width="100%"
|
||||
height="500"
|
||||
src="https://www.youtube.com/embed/dX1lRqsksUc?si=jfnmvVL9SzfJzUVv"
|
||||
title="YouTube video player"
|
||||
frameBorder="0"
|
||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
||||
allowFullScreen
|
||||
></iframe>
|
||||
</div>
|
||||
<figcaption className="mt-4 flex gap-x-2 text-sm leading-6 text-gray-500">
|
||||
<InformationCircleIcon aria-hidden="true" className="mt-0.5 h-5 w-5 flex-none text-gray-300" />
|
||||
Arab Blockchain Week 2022.
|
||||
</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
@@ -10,17 +10,17 @@ const featuredPost = {
|
||||
const posts = [
|
||||
{
|
||||
id: 2,
|
||||
title: 'Boost your conversion rate',
|
||||
href: '#',
|
||||
title: 'Building a Metaverse with Revenue: Insights from Arab Meta Summit 2022 Day 2',
|
||||
href: '/community/blockchainweek1',
|
||||
description:
|
||||
'Illo sint voluptas. Error voluptates culpa eligendi. Hic vel totam vitae illo. Non aliquid explicabo necessitatibus unde. Sed exercitationem placeat consectetur nulla deserunt vel iusto corrupti dicta laboris incididunt.',
|
||||
date: 'Mar 10, 2020',
|
||||
datetime: '2020-03-16',
|
||||
'At the Arab Meta Summit 2022, Christopher K, co-founder and CEO of Aviva Technologies, shared valuable insights on how to build a successful and revenue-generating metaverse.',
|
||||
date: 'Dec 21, 2022',
|
||||
datetime: '2022-12-21',
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: 'Boost your conversion rate',
|
||||
href: '#',
|
||||
title: 'Real-World Applications of the Metaverse in AR: Insights from Omrei Abu Madi at the Arab Meta Summit 2022',
|
||||
href: '/community/blockchainweek2',
|
||||
description:
|
||||
'Illo sint voluptas. Error voluptates culpa eligendi. Hic vel totam vitae illo. Non aliquid explicabo necessitatibus unde. Sed exercitationem placeat consectetur nulla deserunt vel iusto corrupti dicta laboris incididunt.',
|
||||
date: 'Mar 10, 2020',
|
||||
@@ -37,19 +37,19 @@ const featuredPost = {
|
||||
|
||||
<article className="mx-auto w-full max-w-2xl lg:mx-0 lg:max-w-lg">
|
||||
<h2 className="text-base font-medium font-mono leading-7 text-purple-600">Community</h2>
|
||||
<h1 className="mt-2 mb-6 text-3xl font-semibold tracking-tighter font-gradient lg:text-4xl">Upcoming Events</h1>
|
||||
<h1 className="mt-2 mb-6 text-3xl font-semibold tracking-tighter font-gradient lg:text-4xl">Events & News</h1>
|
||||
<img
|
||||
alt=""
|
||||
src="/images/futurefest.jpg"
|
||||
className="mt-4 aspect-auto w-full rounded-2xl bg-gray-50 object-cover lg:aspect-auto lg:h-[20.5rem]"
|
||||
className="mt-4 aspect-auto w-full rounded-2xl bg-purple-50 object-cover lg:aspect-auto lg:h-[20.5rem]"
|
||||
/>
|
||||
<h2 id="featured-post" className="mt-8 text-3xl font-semibold tracking-tight text-purple-700 lg:text-4xl">
|
||||
{featuredPost.title}
|
||||
</h2>
|
||||
<time dateTime={featuredPost.datetime} className="mt-2 block text-sm leading-6 text-gray-600">
|
||||
<time dateTime={featuredPost.datetime} className="mt-2 block text-sm leading-6 text-purple-600">
|
||||
{featuredPost.date}
|
||||
</time>
|
||||
<p className="mt-2 text-lg leading-8 text-gray-600">{featuredPost.description}</p>
|
||||
<p className="mt-2 text-lg leading-8 text-purple-600">{featuredPost.description}</p>
|
||||
<div className="mt-4 flex flex-col justify-between gap-6 sm:mt-8 sm:flex-row-reverse sm:gap-8 lg:mt-4 lg:flex-col">
|
||||
<div className="flex">
|
||||
<a
|
||||
@@ -63,12 +63,12 @@ const featuredPost = {
|
||||
|
||||
</div>
|
||||
</article>
|
||||
<div className="mx-auto w-full max-w-2xl border-t border-gray-900/10 pt-12 sm:pt-16 lg:mx-0 lg:max-w-none lg:border-t-0 lg:pt-0">
|
||||
<div className="-my-12 divide-y divide-gray-900/10">
|
||||
<div className="mx-auto w-full max-w-2xl border-t border-purple-900/10 pt-12 sm:pt-16 lg:mx-0 lg:max-w-none lg:border-t-0 lg:pt-0">
|
||||
<div className="-my-12 divide-y divide-purple-900/10">
|
||||
{posts.map((post) => (
|
||||
<article key={post.id} className="py-12">
|
||||
<div className="group relative max-w-xl">
|
||||
<time dateTime={post.datetime} className="block text-sm leading-6 text-gray-600">
|
||||
<time dateTime={post.datetime} className="block text-sm leading-6 text-purple-600">
|
||||
{post.date}
|
||||
</time>
|
||||
<h2 className="mt-2 text-lg font-semibold text-purple-700 group-hover:text-purple-400">
|
||||
@@ -77,7 +77,7 @@ const featuredPost = {
|
||||
{post.title}
|
||||
</a>
|
||||
</h2>
|
||||
<p className="mt-4 text-sm leading-6 text-gray-600">{post.description}</p>
|
||||
<p className="mt-4 text-sm leading-6 text-purple-600">{post.description}</p>
|
||||
</div>
|
||||
<div className="mt-4 flex">
|
||||
<a
|
||||
|
Reference in New Issue
Block a user