add blog
This commit is contained in:
9
src/app/community/blogs/herogpt/page.jsx
Normal file
9
src/app/community/blogs/herogpt/page.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import Blog_1 from '@/components/blogs/Blog_1'
|
||||
|
||||
export default function Herogpt() {
|
||||
return (
|
||||
<>
|
||||
<Blog_1 />
|
||||
</>
|
||||
)
|
||||
}
|
@@ -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 (
|
@@ -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 (
|
@@ -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 />
|
||||
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
86
src/components/Blogposts.jsx
Normal file
86
src/components/Blogposts.jsx
Normal file
@@ -0,0 +1,86 @@
|
||||
const posts = [
|
||||
{
|
||||
id: 1,
|
||||
title: 'Introducing: HeroGPT v1.0.0',
|
||||
href: '#',
|
||||
description:
|
||||
'We’re excited to introduce Hero-GPT, the latest feature from OurVerse that is set to transform the way we generate and interact with virtual environments.',
|
||||
imageUrl:
|
||||
'/images/herogpt.jpg',
|
||||
date: 'Mar 16, 2020',
|
||||
datetime: '2020-03-16',
|
||||
category: { title: 'Technologies', href: '/community/blogs/herogpt' },
|
||||
author: {
|
||||
name: 'Michael Foster',
|
||||
role: 'Co-Founder / CTO',
|
||||
href: '#',
|
||||
imageUrl:
|
||||
'https://images.unsplash.com/photo-1519244703995-f4e0f30006d5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80',
|
||||
},
|
||||
},
|
||||
// More posts...
|
||||
]
|
||||
|
||||
export default function Example() {
|
||||
return (
|
||||
<div className="bg-white py-24 sm:py-32">
|
||||
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
||||
<div className="mx-auto max-w-2xl text-center">
|
||||
<h2 className="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">From the blog</h2>
|
||||
<p className="mt-2 text-lg leading-8 text-gray-600">
|
||||
Learn how to grow your business with our expert advice.
|
||||
</p>
|
||||
</div>
|
||||
<div className="mx-auto mt-16 grid max-w-2xl grid-cols-1 gap-x-8 gap-y-20 lg:mx-0 lg:max-w-none lg:grid-cols-3">
|
||||
{posts.map((post) => (
|
||||
<article key={post.id} className="flex flex-col items-start justify-between">
|
||||
<div className="relative w-full">
|
||||
<img
|
||||
alt=""
|
||||
src={post.imageUrl}
|
||||
className="aspect-[16/9] w-full rounded-2xl bg-gray-100 object-cover sm:aspect-[2/1] lg:aspect-[3/2]"
|
||||
/>
|
||||
<div className="absolute inset-0 rounded-2xl ring-1 ring-inset ring-gray-900/10" />
|
||||
</div>
|
||||
<div className="max-w-xl">
|
||||
<div className="mt-8 flex items-center gap-x-4 text-xs">
|
||||
<time dateTime={post.datetime} className="text-gray-500">
|
||||
{post.date}
|
||||
</time>
|
||||
<a
|
||||
href={post.category.href}
|
||||
className="relative z-10 rounded-full bg-gray-50 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-100"
|
||||
>
|
||||
{post.category.title}
|
||||
</a>
|
||||
</div>
|
||||
<div className="group relative">
|
||||
<h3 className="mt-3 text-lg font-semibold leading-6 text-gray-900 group-hover:text-gray-600">
|
||||
<a href={post.href}>
|
||||
<span className="absolute inset-0" />
|
||||
{post.title}
|
||||
</a>
|
||||
</h3>
|
||||
<p className="mt-5 line-clamp-3 text-sm leading-6 text-gray-600">{post.description}</p>
|
||||
</div>
|
||||
<div className="relative mt-8 flex items-center gap-x-4">
|
||||
<img alt="" src={post.author.imageUrl} className="h-10 w-10 rounded-full bg-gray-100" />
|
||||
<div className="text-sm leading-6">
|
||||
<p className="font-semibold text-gray-900">
|
||||
<a href={post.author.href}>
|
||||
<span className="absolute inset-0" />
|
||||
{post.author.name}
|
||||
</a>
|
||||
</p>
|
||||
<p className="text-gray-600">{post.author.role}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@@ -1,7 +1,7 @@
|
||||
const featuredPost = {
|
||||
id: 1,
|
||||
title: 'FutureFest 2024',
|
||||
href: '/community/versefest',
|
||||
href: '/community/events/versefest',
|
||||
description:
|
||||
'Embrace the possibilities at FutureFest 2024, a landmark event that invites you to explore the converging worlds of technology, creativity, and sustainability.',
|
||||
date: 'Mar 16, 2020',
|
||||
@@ -11,7 +11,7 @@ const featuredPost = {
|
||||
{
|
||||
id: 2,
|
||||
title: 'Building a Metaverse with Revenue: Insights from Arab Meta Summit 2022 Day 2',
|
||||
href: '/community/blockchainweek1',
|
||||
href: '/community/events/blockchainweek1',
|
||||
description:
|
||||
'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',
|
||||
@@ -20,7 +20,7 @@ const featuredPost = {
|
||||
{
|
||||
id: 3,
|
||||
title: 'Real-World Applications of the Metaverse in AR: Insights from Omrei Abu Madi at the Arab Meta Summit 2022',
|
||||
href: '/community/blockchainweek2',
|
||||
href: '/community/events/blockchainweek2',
|
||||
description:
|
||||
'During Day 1 of the Arab Meta Summit 2022, Omrei Abu Madi, a visionary in both the tech and tourism industries, discussed the real-world applications of the Metaverse, particularly focusing on Augmented Reality (AR).',
|
||||
date: 'Dec 18, 2022',
|
||||
@@ -37,7 +37,7 @@ 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-cyan-600">Community</h2>
|
||||
<h1 className="mt-2 mb-6 text-3xl font-semibold tracking-tighter font-gradient-dark lg:text-4xl">Events & News</h1>
|
||||
<h1 className="mt-2 mb-6 text-3xl font-semibold tracking-tighter font-gradient-dark lg:text-4xl">Events</h1>
|
||||
<img
|
||||
alt=""
|
||||
src="/images/futurefest.jpg"
|
||||
|
135
src/components/blogs/Blog_1.jsx
Normal file
135
src/components/blogs/Blog_1.jsx
Normal file
@@ -0,0 +1,135 @@
|
||||
import { CheckCircleIcon, InformationCircleIcon } from '@heroicons/react/20/solid'
|
||||
|
||||
export default function Blog_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">Technologies</p>
|
||||
<h1 className="mt-2 text-3xl font-bold font-gradient-dark tracking-tight text-gray-900 sm:text-4xl">
|
||||
Announcing Hero-GPT: Revolutionizing Virtual Environment Creation
|
||||
</h1>
|
||||
<p className="mt-6 text-xl leading-8">
|
||||
We’re excited to introduce Hero-GPT,
|
||||
the latest feature from OurVerse that is set to transform the way we generate and interact with virtual environments.
|
||||
</p>
|
||||
<div className="mt-10 max-w-2xl">
|
||||
<p>
|
||||
Hero-GPT is a powerful system that allows users to create fully immersive 3D spaces using nothing more than text
|
||||
or voice commands. Whether you're a game developer, architect, educator, or just someone with a creative vision,
|
||||
Hero-GPT makes it easier than ever to bring your ideas to life in the digital world.
|
||||
</p>
|
||||
<p>
|
||||
With Hero-GPT, users can describe their desired environment in simple terms, and the system does the rest.
|
||||
It not only creates 3D environments but also generates HDRI atmospheres that fit perfectly with the scene,
|
||||
allowing for more realistic and immersive experiences. From game design to virtual real estate tours,
|
||||
the possibilities are truly limitless.
|
||||
<br /><br></br>
|
||||
</p>
|
||||
<p>
|
||||
<strong className="font-semibold lg:text-2xl text-xl tracking-tight text-cyan-700">Key Features of Hero-GPT:</strong>
|
||||
</p>
|
||||
<ul role="list" className="mt-4 mb-8 max-w-xl space-y-4 text-gray-600">
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Multi-Stage Generation.</strong>
|
||||
Start by generating HDRI environments to set the mood and surroundings. Then select from pre-built templates based on
|
||||
your descriptions and further refine the space with additional text commands.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Group Models with Behavior.</strong>
|
||||
Automatically create environments with dynamic, real-world behaviors—e.g., waterfalls in meeting halls,
|
||||
powered by ML models.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Individual Model Adjustments.</strong> Modify individual objects:
|
||||
resize, retexture, reposition, within the environment through simple text descriptions.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Voice Commands & Real-Time Editing.</strong> Modify individual objects:
|
||||
Use voice input to create or modify environments instantly, even during meetings or live sessions.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Image-to-Metaverse Conversion.</strong>
|
||||
Upload images or scan objects with a phone camera to integrate them into your 3D world.
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Hero-GPT opens up a world of possibilities across various industries, enabling users to easily create and customize immersive environments. From gaming and education to real estate and healthcare,
|
||||
the potential applications of Hero-GPT are vast and impactful.
|
||||
<br /><br></br>
|
||||
</p>
|
||||
<strong className="font-semibold text-cyan-700 lg:text-2xl text-xl tracking-tight mt-2">Here are some key use cases of Hero-GPT:</strong>
|
||||
<ul role="list" className="mt-4 mb-8 max-w-xl space-y-8 text-gray-600">
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Game Development.</strong>
|
||||
Easily generate immersive game environments and character models, accelerating the game development process.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Real Estate.</strong>
|
||||
Create virtual property tours that allow potential buyers to explore spaces in stunning 3D, providing a fully immersive experience.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Education.</strong>
|
||||
Build interactive virtual classrooms or labs that adapt in real-time, offering more engaging learning opportunities for students of all ages.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Healthcare.</strong>
|
||||
Develop medical simulations or virtual therapy rooms tailored to specific needs, providing a realistic training or therapeutic environment.
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div className="mt-2 max-w-2xl">
|
||||
<h2 className='text-2xl font-bold tracking-tight text-cyan-900 lg:text-2xl text-xl tracking-tight mb-4'>Empowering Creativity and Equality with Hero-GPT:</h2>
|
||||
<p>
|
||||
One of the most transformative aspects of Hero-GPT is how it democratizes access to advanced 3D and virtual reality technology.
|
||||
No longer are expensive software, high technical skills, or powerful hardware a barrier. Now, anyone—regardless of background,
|
||||
location, or experience—can create detailed virtual environments with ease. This opens up opportunities for underserved communities
|
||||
to engage with cutting-edge technology and start businesses or projects in the virtual space.
|
||||
</p>
|
||||
<p>
|
||||
From game developers to educators in remote regions, Hero-GPT ensures that everyone can participate in and benefit
|
||||
from the virtual economy. By eliminating traditional barriers, this system promotes global equality and fosters creativity on
|
||||
a scale never before possible.
|
||||
</p>
|
||||
</div>
|
||||
<div className="mt-10 max-w-2xl">
|
||||
<h2 className='text-2xl font-bold tracking-tight text-cyan-900 lg:text-2xl text-xl tracking-tight mb-4'>Conclusion:</h2>
|
||||
<p>
|
||||
Hero-GPT marks a significant leap forward in the creation of virtual environments, providing unmatched ease of use,
|
||||
flexibility, and creativity. Whether you're building a virtual world for gaming, real estate, education,
|
||||
or any other purpose, Hero-GPT from OurVerse is the tool you need to bring your ideas to life.
|
||||
</p>
|
||||
<p>
|
||||
Get ready to unlock the next level of immersive creation with Hero-GPT—where your imagination is the only limit.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
@@ -1,132 +0,0 @@
|
||||
import { CheckCircleIcon, InformationCircleIcon } from '@heroicons/react/20/solid'
|
||||
|
||||
export default function Herogpt() {
|
||||
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-dark tracking-tight text-gray-900 sm:text-4xl">
|
||||
Announcing Hero-GPT: Revolutionizing Virtual Environment Creation
|
||||
</h1>
|
||||
<p className="mt-6 text-xl leading-8">
|
||||
We’re excited to introduce Hero-GPT,
|
||||
the latest feature from OurVerse that is set to transform the way we generate and interact with virtual environments.
|
||||
</p>
|
||||
</div>
|
||||
<div className="mt-10 max-w-2xl">
|
||||
<p>
|
||||
Hero-GPT is a powerful system that allows users to create fully immersive 3D spaces using nothing more than text
|
||||
or voice commands. Whether you're a game developer, architect, educator, or just someone with a creative vision,
|
||||
Hero-GPT makes it easier than ever to bring your ideas to life in the digital world.
|
||||
</p>
|
||||
<p>
|
||||
With Hero-GPT, users can describe their desired environment in simple terms, and the system does the rest.
|
||||
It not only creates 3D environments but also generates HDRI atmospheres that fit perfectly with the scene,
|
||||
allowing for more realistic and immersive experiences. From game design to virtual real estate tours,
|
||||
the possibilities are truly limitless.
|
||||
</p>
|
||||
<p>
|
||||
<strong className="font-semibold text-cyan-700">Key Features of Hero-GPT:</strong>
|
||||
</p>
|
||||
<ul role="list" className="mt-8 max-w-xl space-y-8 text-gray-600">
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Multi-Stage Generation.</strong>
|
||||
Start by generating HDRI environments to set the mood and surroundings. Then s
|
||||
lect from pre-built templates based on
|
||||
your descriptions and further refine the space with additional text commands.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Group Models with Behavior.</strong>
|
||||
Automatically create environments with dynamic, real-world behaviors- e.g., waterfalls in meeting halls,
|
||||
powered by ML models.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Individual Model Adjustments.</strong> Modify individual objects:
|
||||
resize, retexture, reposition, within the environment through simple text descriptions.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Voice Commands & Real-Time Editing.</strong> Modify individual objects:
|
||||
Use voice input to create or modify environments instantly, even during meetings or live sessions.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Image-to-Metaverse Conversion.</strong>
|
||||
Upload images or scan objects with a phone camera to integrate them into your 3D world.
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Hero-GPT opens up a world of possibilities across various industries, enabling users to easily create and customize immersive environments. From gaming and education to real estate and healthcare,
|
||||
the potential applications of Hero-GPT are vast and impactful.
|
||||
</p>
|
||||
<strong className="font-semibold text-cyan-700">Here are some key use cases of Hero-GPT:</strong>
|
||||
<ul role="list" className="mt-8 max-w-xl space-y-8 text-gray-600">
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Game Development.</strong>
|
||||
Easily generate immersive game environments and character models, accelerating the game development process.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Real Estate.</strong>
|
||||
Create virtual property tours that allow potential buyers to explore spaces in stunning 3D, providing a fully immersive experience.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Education.</strong> Build interactive virtual classrooms or labs that adapt in real-time, offering more engaging learning opportunities for students of all ages.
|
||||
</span>
|
||||
</li>
|
||||
<li className="flex gap-x-3">
|
||||
<CheckCircleIcon aria-hidden="true" className="mt-1 h-5 w-5 flex-none text-cyan-600" />
|
||||
<span>
|
||||
<strong className="font-semibold text-gray-900">Healthcare.</strong> Develop medical simulations or virtual therapy rooms tailored to specific needs, providing a realistic training or therapeutic environment.
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div className="mt-10 max-w-2xl">
|
||||
<h2 className='text-2xl font-bold tracking-tight text-gray-900'>Empowering Creativity and Equality with Hero-GPT:</h2>
|
||||
<p>
|
||||
One of the most transformative aspects of Hero-GPT is how it democratizes access to advanced 3D and virtual reality technology.
|
||||
No longer are expensive software, high technical skills, or powerful hardware a barrier. Now, anyone—regardless of background,
|
||||
location, or experience—can create detailed virtual environments with ease. This opens up opportunities for underserved communities
|
||||
to engage with cutting-edge technology and start businesses or projects in the virtual space.
|
||||
</p>
|
||||
<p>
|
||||
From game developers to educators in remote regions, Hero-GPT ensures that everyone can participate in and benefit
|
||||
from the virtual economy. By eliminating traditional barriers, this system promotes global equality and fosters creativity on
|
||||
a scale never before possible.
|
||||
</p>
|
||||
</div>
|
||||
<div className="mt-10 max-w-2xl">
|
||||
<h2 className='text-2xl font-bold tracking-tight text-gray-900'>Conclusion:</h2>
|
||||
<p>
|
||||
Hero-GPT marks a significant leap forward in the creation of virtual environments, providing unmatched ease of use,
|
||||
flexibility, and creativity. Whether you're building a virtual world for gaming, real estate, education,
|
||||
or any other purpose, Hero-GPT from OurVerse is the tool you need to bring your ideas to life.
|
||||
</p>
|
||||
<p>
|
||||
Get ready to unlock the next level of immersive creation with Hero-GPT—where your imagination is the only limit.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user