1
- import { Authors , allAuthors } from 'contentlayer/generated'
2
- import { MDXLayoutRenderer } from 'pliny/mdx-components'
3
- import AuthorLayout from '@/layouts/AuthorLayout'
4
- import { coreContent } from 'pliny/utils/contentlayer'
1
+ import PageLayout from '@/layouts/PageLayout'
5
2
import { genPageMetadata } from 'app/seo'
6
- import { FaLaptopCode , FaNewspaper , FaRocket } from 'react-icons/fa'
7
- import siteMetadata from '@/data/siteMetadata'
8
- import NewsletterForm from 'pliny/ui/NewsletterForm'
3
+ import { FaBrain , FaNewspaper , FaRocket } from 'react-icons/fa'
9
4
10
5
export const metadata = genPageMetadata ( { title : 'About Us' } )
11
6
12
- export default function Page ( ) {
13
- const author = allAuthors . find ( ( p ) => p . slug === 'default' ) as Authors
14
- const mainContent = coreContent ( author )
15
-
7
+ export default function AboutUsPage ( ) {
16
8
return (
17
9
< >
18
- < AuthorLayout content = { mainContent } >
10
+ < PageLayout title = "About Us" >
19
11
< div className = "space-y-8" >
20
12
< p className = "text-xl leading-relaxed text-gray-700 dark:text-gray-300" >
21
- Welcome to < span className = "text-primary font-bold" > codust.dev</ span > — your go-to
22
- platform for exploring forefront of technology .
13
+ Welcome to < span className = "text-primary font-bold" > codust.dev</ span > — where we focus
14
+ on cutting-edge AI development and help you stay ahead with the latest tech trends .
23
15
</ p >
24
16
< p className = "text-lg leading-relaxed text-gray-700 dark:text-gray-300" >
25
- At Codust, we dive deep into cutting-edge advancements across multiple domains: AI,
26
- Robotics, and other emerging innovations shaping the future .
17
+ Our mission is to empower AI developers with practical, production-ready implementations
18
+ and keep you informed about the rapidly evolving AI landscape .
27
19
</ p >
28
20
29
- < div className = "grid grid-cols-1 gap-6 pt-8 md:grid-cols-3 " >
30
- { /* Card 1 - Pink Theme */ }
21
+ < div className = "grid grid-cols-1 gap-6 pt-8 md:grid-cols-2 " >
22
+ { /* Card 1 - AI Development */ }
31
23
< div className = "rounded-2xl bg-[#E73490] p-6 text-white shadow-md dark:bg-[#B82672]" >
32
- < FaLaptopCode className = "mx-auto mb-4 text-4xl" />
33
- < h3 className = "text-center text-xl font-bold text-white" > AI & Robotics </ h3 >
24
+ < FaBrain className = "mx-auto mb-4 text-4xl" />
25
+ < h3 className = "text-center text-xl font-bold text-white" > Build Cutting-Edge AI </ h3 >
34
26
< p className = "text-center" >
35
- Exploring cutting-edge developments in Artificial Intelligence, Machine Learning,
36
- and Robotics.
27
+ Master industrial-grade AI development through hands-on projects. Learn to build
28
+ production-ready ML models, implement MLOps practices, and deploy scalable AI
29
+ solutions with practical, real-world guidance.
37
30
</ p >
38
31
</ div >
39
- { /* Card 2 - Blue Theme */ }
32
+
33
+ { /* Card 2 - Tech Updates */ }
40
34
< div className = "rounded-2xl bg-[#4051B5] p-6 text-white shadow-md dark:bg-[#2D3A8C]" >
41
35
< FaNewspaper className = "mx-auto mb-4 text-4xl" />
42
- < h3 className = "text-center text-xl font-bold text-white" > Newsletter</ h3 >
43
- < p className = "text-center" >
44
- Subscribe for weekly updates on the latest tech innovations, delivered straight to
45
- your inbox.
46
- </ p >
47
- </ div >
48
- { /* Card 3 - Cyan Theme */ }
49
- < div className = "rounded-2xl bg-[#00ADB5] p-6 text-white shadow-md dark:bg-[#007D85]" >
50
- < FaRocket className = "mx-auto mb-4 text-4xl" />
51
- < h3 className = "text-center text-xl font-bold text-white" > Projects & Tutorials </ h3 >
36
+ < h3 className = "text-center text-xl font-bold text-white" > Stay Tech-Updated</ h3 >
52
37
< p className = "text-center" >
53
- Discover hands-on projects, tutorials, and insightful content to accelerate your
54
- learning journey.
38
+ Never miss important tech trends with our curated weekly newsletter. Get insights on
39
+ emerging technologies, development best practices, and industry innovations that
40
+ matter.
55
41
</ p >
56
42
</ div >
57
43
</ div >
58
44
59
45
< p className = "text-lg leading-relaxed text-gray-700 dark:text-gray-300" >
60
- Whether you're a developer, researcher, or tech enthusiast, you'll find insightful
61
- content, projects, and discussions that aim to expand your knowledge and inspire new
62
- ideas.
46
+ Join us to transform your AI development journey!
63
47
</ p >
64
48
</ div >
65
- </ AuthorLayout >
66
- { siteMetadata . newsletter ?. provider && (
67
- < div className = "flex items-center justify-center pt-4" >
68
- < NewsletterForm />
69
- </ div >
70
- ) }
49
+ </ PageLayout >
71
50
</ >
72
51
)
73
- }
52
+ }
0 commit comments