diff --git a/app/about/page.js b/app/about/page.js
new file mode 100644
index 0000000..ed066f2
--- /dev/null
+++ b/app/about/page.js
@@ -0,0 +1,209 @@
+import Image from "next/image";
+import Link from "next/link";
+import { FadeIn, SlideInLeft, SlideInRight, ScaleIn, StaggerContainer, StaggerItem, HoverScale, PageTransition } from "@/components/Motion";
+
+export default function About() {
+ // Features data from info.txt
+ const features = [
+ {
+ title: "Innovation",
+ description: "We stay ahead of the curve with cutting-edge technologies and modern development practices.",
+ icon: "/images/innovation2.jpg"
+ },
+ {
+ title: "Experience",
+ description: "Our team brings years of expertise in web, mobile, and cloud development solutions.",
+ icon: "/images/dev.jpg"
+ },
+ {
+ title: "Quality",
+ description: "We deliver robust, scalable, and high-performance solutions that exceed expectations.",
+ icon: "/images/innovation.jpg"
+ },
+ {
+ title: "Support",
+ description: "24/7 technical support and maintenance to ensure your systems run smoothly.",
+ icon: "/images/support.jpg"
+ }
+ ];
+
+ // Team members data from info.txt
+ const team = [
+ {
+ name: "John Doe",
+ role: "CEO & Founder",
+ bio: "15+ years of experience in tech leadership and innovation.",
+ image: "/images/webapps.jpg"
+ },
+ {
+ name: "Jane Smith",
+ role: "Lead Developer",
+ bio: "Expert in full-stack development and cloud architecture.",
+ image: "/images/websiedesign.jpg"
+ },
+ {
+ name: "Mike Johnson",
+ role: "Design Director",
+ bio: "Award-winning UI/UX designer with a passion for user-centric design.",
+ image: "/images/coding3.jpg"
+ },
+ {
+ name: "Sarah Wilson",
+ role: "Project Manager",
+ bio: "Certified PMP with extensive experience in agile methodologies.",
+ image: "/images/hosting.jpg"
+ }
+ ];
+
+ return (
+
+
+ {/* Hero Section */}
+
+
+
+
+
+
+
+
+
About YznApps
+
+
+
We're a team of passionate IT professionals dedicated to delivering exceptional technology solutions
+
+
+
+
+
+
+ {/* Company Overview */}
+
+
+
+
+
+
+
+
+
+
Our Story
+
+
+
+ YznApps was founded with a simple mission: to provide businesses with innovative, reliable, and scalable IT solutions.
+ Over the years, we've grown from a small team of developers to a comprehensive IT service provider, helping businesses
+ of all sizes transform their digital presence and operations.
+
+
+
+
+ We believe in building long-term relationships with our clients, understanding their unique challenges, and delivering
+ solutions that drive real business value. Our team combines technical expertise with industry knowledge to ensure that
+ every project we undertake exceeds expectations.
+
+
+
+
+
+
+
+
+ {/* Core Values/Features */}
+
+
+
+
+
Our Core Values
+
The principles that guide everything we do
+
+
+ {features.map((feature, index) => (
+
+
+
+
+
+
+
+
{feature.title}
+
{feature.description}
+
+
+
+
+ ))}
+
+
+
+
+
+ {/* Team Section */}
+
+
+
+
+
Meet Our Team
+
The experts behind our success
+
+
+ {team.map((member, index) => (
+
+
+
+
+
+
+
+
{member.name}
+
{member.role}
+
{member.bio}
+
+
+
+
+ ))}
+
+
+
+
+
+ {/* Call to Action */}
+
+
+
+
Ready to Work With Us?
+
Contact our team today to discuss how we can help with your IT needs
+
+
+ Get in Touch
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/app/contact/page.js b/app/contact/page.js
new file mode 100644
index 0000000..e0c7876
--- /dev/null
+++ b/app/contact/page.js
@@ -0,0 +1,238 @@
+import Image from "next/image";
+import Link from "next/link";
+import { FadeIn, SlideInLeft, SlideInRight, ScaleIn, StaggerContainer, StaggerItem, HoverScale, PageTransition } from "@/components/Motion";
+
+export default function Contact() {
+ // Contact information from info.txt
+ const contactInfo = {
+ address: "Al Hashmi Street, Irbid City, 21110",
+ email: "contact@yznapps.com",
+ phone: "+962 (781) 881-280"
+ };
+
+ return (
+
+
+ {/* Hero Section */}
+
+
+
+
+
+
+
+
+
Contact Us
+
+
+
Get in touch with our team to discuss your IT needs
+
+
+
+
+
+
+ {/* Contact Section */}
+
+
+
+
+ {/* Contact Form */}
+
+
+
Send Us a Message
+
+
+
+
+ {/* Contact Information */}
+
+
+
+
Contact Information
+
+ Have questions or need assistance? Our team is here to help. Reach out to us using any of the methods below.
+
We offer a comprehensive range of IT services including web development, mobile app development, web hosting, CMS solutions, and managed VPS services.
+
+
+
+
+
How much does a typical project cost?
+
Project costs vary depending on requirements, complexity, and timeline. We provide detailed quotes after an initial consultation to understand your specific needs.
+
+
+
+
+
How long does it take to complete a project?
+
Project timelines depend on scope and complexity. A simple website might take 2-4 weeks, while complex web applications or mobile apps can take several months. We'll provide a timeline estimate during our initial discussions.
+
+
+
+
+
Do you provide ongoing support after project completion?
+
Yes, we offer ongoing support and maintenance packages after project completion. Our support includes bug fixes, security updates, performance optimization, and technical assistance to ensure your solution continues to run smoothly.
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/app/favicon.ico b/app/favicon.ico
index 718d6fe..32395ac 100644
Binary files a/app/favicon.ico and b/app/favicon.ico differ
diff --git a/app/globals.css b/app/globals.css
index 13d40b8..dc54c96 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -20,6 +20,10 @@ body {
font-family: Arial, Helvetica, sans-serif;
}
+.my-image {
+ image-resolution: from-image 300dpi;
+}
+
@layer utilities {
.text-balance {
text-wrap: balance;
diff --git a/app/layout.js b/app/layout.js
index 9800bf8..1e6436f 100644
--- a/app/layout.js
+++ b/app/layout.js
@@ -1,5 +1,8 @@
import localFont from "next/font/local";
import "./globals.css";
+import Navbar from "../components/Navbar";
+import Footer from "../components/Footer";
+import MotionProvider from "../components/MotionProvider";
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
@@ -13,17 +16,21 @@ const geistMono = localFont({
});
export const metadata = {
- title: "Create Next App",
- description: "Generated by create next app",
+ title: "YznApps - Professional IT Solutions",
+ description: "YznApps provides professional IT solutions including web development, mobile apps, hosting, and VPS services.",
};
export default function RootLayout({ children }) {
return (
-
- {children}
+
+
+
+
+ {children}
+
+
+
);
diff --git a/app/page.js b/app/page.js
index 7f0afc2..6add868 100644
--- a/app/page.js
+++ b/app/page.js
@@ -1,101 +1,272 @@
import Image from "next/image";
+import Link from "next/link";
+import { FadeIn, SlideInLeft, SlideInRight, ScaleIn, StaggerContainer, StaggerItem, HoverScale, PageTransition } from "../components/Motion";
export default function Home() {
- return (
-
-
-
-
-
- Get started by editing{" "}
-
- app/page.js
-
- .
-