File size: 56,046 Bytes
1e2c457 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WDSGN.Agency — Web Design & Development Agency</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollTrigger.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.animate-float {
animation: float 3s ease-in-out infinite;
}
.hero-bg {
will-change: transform;
}
.feature-icon {
width: 48px;
height: 48px;
background-color: #f3f4f6;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}
.work-card:hover .work-image {
transform: scale(1.03);
}
.work-image {
transition: transform 0.3s ease;
}
.process-step {
position: relative;
padding-left: 32px;
}
.process-step:before {
content: "";
position: absolute;
left: 0;
top: 8px;
width: 16px;
height: 16px;
border-radius: 50%;
background-color: #3b82f6;
}
.plan-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}
</style>
</head>
<body class="font-sans text-gray-800 bg-blue-50">
<!-- Header -->
<header class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<a href="#" class="text-2xl font-bold text-blue-600">WDSGN.Agency</a>
<nav class="hidden md:flex space-x-8">
<a href="#work" class="hover:text-blue-600 transition">Work</a>
<a href="#services" class="hover:text-blue-600 transition">Services</a>
<a href="#process" class="hover:text-blue-600 transition">Process</a>
<a href="#plans" class="hover:text-blue-600 transition">Plans</a>
<a href="#faq" class="hover:text-blue-600 transition">FAQ</a>
</nav>
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section class="relative overflow-hidden py-32 bg-gray-900">
<div class="absolute inset-0 z-0">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Digital background"
class="w-full h-full object-cover opacity-70">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 to-transparent"></div>
<div class="absolute inset-0 bg-gradient-to-r from-blue-600/20 to-indigo-600/20"></div>
</div>
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6 text-gray-900">Web Design & Development Agency</h1>
<p class="text-xl md:text-2xl text-gray-600 max-w-3xl mx-auto mb-10">
Crafting exceptional digital experiences with pixel-perfect design and clean code.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#plans" class="bg-blue-600 hover:bg-blue-700 text-white font-semibold py-3 px-8 rounded-lg transition duration-300">
View Plans
</a>
<a href="#work" class="bg-white hover:bg-gray-100 text-gray-800 font-semibold py-3 px-8 rounded-lg border border-gray-300 transition duration-300">
See Our Work
</a>
</div>
</div>
</section>
<!-- Work Section -->
<section id="work" class="py-16 bg-blue-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Our Recent Work</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Work Item 1 -->
<div class="work-card group bg-blue-900 text-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-all duration-300">
<a href="https://wdsgn.agency/work/french-winery/" class="block relative overflow-hidden">
<img src="https://images.unsplash.com/photo-1531384370597-8590413be50a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="French Winery Website"
class="work-image w-full h-64 object-cover group-hover:scale-105 transition-transform duration-500">
<div class="absolute inset-0 bg-gradient-to-t from-black/40 via-transparent to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
</a>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">French Winery</h3>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Web Design</span>
</div>
<a href="https://wdsgn.agency/work/french-winery/" class="text-white hover:text-blue-200 font-medium inline-flex items-center">
View Project <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Work Item 2 -->
<div class="work-card bg-blue-900 text-white rounded-xl overflow-hidden shadow-md">
<a href="https://wdsgn.agency/work/roofing-craftsmen/" class="block">
<img src="https://cdn.wdsgn.agency/wp-content/uploads/2025/05/falcved-by-wdsgn-homepage-560x420.jpg"
alt="Falcved - Web Design & Development - Homepage"
class="work-image w-full h-64 object-cover">
</a>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Roofing Craftsmen</h3>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Web Design</span>
<span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded">Development</span>
</div>
<a href="https://wdsgn.agency/work/roofing-craftsmen/" class="text-white hover:text-blue-200 font-medium inline-flex items-center">
View Project <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Work Item 3 -->
<div class="work-card bg-blue-900 text-white rounded-xl overflow-hidden shadow-md">
<a href="https://wdsgn.agency/work/clean-energy-producer/" class="block">
<img src="https://cdn.wdsgn.agency/wp-content/uploads/2024/11/windity-by-wdsgn-web-design-homepage-560x420.jpg"
alt="Windity - Web Design - Homepage"
class="work-image w-full h-64 object-cover">
</a>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Clean Energy Producer</h3>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Web Design</span>
</div>
<a href="https://wdsgn.agency/work/clean-energy-producer/" class="text-white hover:text-blue-200 font-medium inline-flex items-center">
View Project <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center text-blue-900 hover:text-blue-700 font-medium">
View All 39 Works <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Why Choose Us</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white p-8 rounded-xl shadow-sm hover:-translate-y-2 transition-transform duration-300" data-aos="fade-up">
<div class="feature-icon">
<i class="fas fa-ruler-combined text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Perfection Isn't Boring</h3>
<p class="text-gray-600">
Our obsession with details ensures that every pixel of your website is perfect. BTW, we are the ones who name layers in Figma and comment on code without AI.
</p>
</div>
<!-- Feature 2 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="feature-icon">
<i class="fas fa-award text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Top-notch Quality</h3>
<p class="text-gray-600">
Always expect first-class design and quality code; with our experience, we already know what we are doing.
</p>
</div>
<!-- Feature 3 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="feature-icon">
<i class="fas fa-universal-access text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Accessibility First</h3>
<p class="text-gray-600">
Ensuring accessibility is at the heart of our design and development process to make your website user-friendly for everyone.
</p>
</div>
<!-- Feature 4 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="feature-icon">
<i class="fas fa-handshake text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">No Contracts</h3>
<p class="text-gray-600">
No unnecessary bureaucracy; our agreement is about mutual trust and understanding. You can pause or cancel a partnership anytime.
</p>
</div>
<!-- Feature 5 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="feature-icon">
<i class="fas fa-bolt text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Fast & Reliable</h3>
<p class="text-gray-600">
We'll take care of your web project from start to finish as quickly as possible but maintain top-tier quality.
</p>
</div>
<!-- Feature 6 -->
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="feature-icon">
<i class="fas fa-heart text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Care of Projects</h3>
<p class="text-gray-600">
We'll take care of your projects even after they're finished, ensuring everything is always up-to-date and secure.
</p>
</div>
</div>
<div class="mt-12 grid grid-cols-1 md:grid-cols-3 gap-6 bg-blue-600 text-white p-8 rounded-xl">
<div class="text-center">
<div class="text-4xl font-bold mb-2">25+</div>
<div class="text-sm uppercase tracking-wider">Years in the web industry</div>
</div>
<div class="text-center">
<div class="text-4xl font-bold mb-2">500+</div>
<div class="text-sm uppercase tracking-wider">Web projects completed</div>
</div>
<div class="text-center">
<div class="text-4xl font-bold mb-2">12K+</div>
<div class="text-sm uppercase tracking-wider">WordPress themes sold</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Our Services</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<!-- Design Services -->
<div>
<h3 class="text-2xl font-semibold mb-6 flex items-center">
<i class="fas fa-palette text-blue-600 mr-3"></i> Design Services
</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="bg-gray-50 p-4 rounded-lg">Analysis & Research</div>
<div class="bg-gray-50 p-4 rounded-lg">User Experience (UX) Audits</div>
<div class="bg-gray-50 p-4 rounded-lg">User Experience (UX) Wireframes</div>
<div class="bg-gray-50 p-4 rounded-lg">User Interface (UI) Prototypes</div>
<div class="bg-gray-50 p-4 rounded-lg">Websites</div>
<div class="bg-gray-50 p-4 rounded-lg">Design Systems</div>
<div class="bg-gray-50 p-4 rounded-lg">Landing Pages</div>
<div class="bg-gray-50 p-4 rounded-lg">Product Pages</div>
<div class="bg-gray-50 p-4 rounded-lg">Dashboards</div>
<div class="bg-gray-50 p-4 rounded-lg">Apps</div>
<div class="bg-gray-50 p-4 rounded-lg">Brand Identities</div>
<div class="bg-gray-50 p-4 rounded-lg">Newsletters</div>
<div class="bg-gray-50 p-4 rounded-lg">Banners</div>
<div class="bg-gray-50 p-4 rounded-lg">Icons</div>
</div>
</div>
<!-- Development Services -->
<div>
<h3 class="text-2xl font-semibold mb-6 flex items-center">
<i class="fas fa-code text-blue-600 mr-3"></i> Development Services
</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="bg-gray-50 p-4 rounded-lg">Analysis & Planning</div>
<div class="bg-gray-50 p-4 rounded-lg">WordPress Development</div>
<div class="bg-gray-50 p-4 rounded-lg">WooCommerce Integration</div>
<div class="bg-gray-50 p-4 rounded-lg">WordPress Updates & Security</div>
<div class="bg-gray-50 p-4 rounded-lg">Accessibility Optimization</div>
<div class="bg-gray-50 p-4 rounded-lg">On-page SEO</div>
<div class="bg-gray-50 p-4 rounded-lg">Performance Optimization</div>
<div class="bg-gray-50 p-4 rounded-lg">Server & Hosting Management</div>
<div class="bg-gray-50 p-4 rounded-lg">Post-deployment Support</div>
</div>
</div>
</div>
<!-- Technologies -->
<div class="mt-16">
<h3 class="text-2xl font-semibold mb-8 text-center">Technologies We Use</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div>
<h4 class="font-semibold mb-3 text-blue-600">Creativity & Design</h4>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Figma</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Spline</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Adobe CC</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-3 text-blue-600">WordPress</h4>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> WordPress</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> WooCommerce</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> WCS</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-3 text-blue-600">Web Development</h4>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> PHP</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> PHPStan</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Security</li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-3 text-blue-600">Web Interactivity</h4>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> JavaScript</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> jQuery</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Security</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section id="process" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Our Process</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<!-- Design Process -->
<div>
<h3 class="text-2xl font-semibold mb-6 flex items-center">
<i class="fas fa-paint-brush text-blue-600 mr-3"></i> Web Design Process
</h3>
<div class="space-y-6">
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Analyzing & Researching</h4>
<p class="text-gray-600">
Conducting thorough analysis and research to understand project requirements, target audience, competitors, and design trends.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Mapping + Revisions</h4>
<p class="text-gray-600">
Designing a comprehensive flow map of the website structure to ensure a seamless and intuitive user journey.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Wireframing + Revisions</h4>
<p class="text-gray-600">
Creating initial wireframes to outline the structure and layout of the website, with iterative revisions.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Designing + Revisions</h4>
<p class="text-gray-600">
Developing visual designs that incorporate branding elements, with ongoing revisions to achieve perfection.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Prototyping + Revisions</h4>
<p class="text-gray-600">
Building interactive prototypes to simulate the user experience and functionality of the website.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Delivering in Figma</h4>
<p class="text-gray-600">
Finalizing and delivering the design assets and specifications to the client using Figma.
</p>
</div>
</div>
</div>
<!-- Development Process -->
<div>
<h3 class="text-2xl font-semibold mb-6 flex items-center">
<i class="fas fa-laptop-code text-blue-600 mr-3"></i> Web Development Process
</h3>
<div class="space-y-6">
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Analyzing & Planning</h4>
<p class="text-gray-600">
Analyzing project requirements and planning the development process, including defining goals and timelines.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Programming & Coding</h4>
<p class="text-gray-600">
Writing and implementing the code to develop the website's functionality, features, and integrations.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Beta Setup & Testing + Revisions</h4>
<p class="text-gray-600">
Setting up a beta version for testing, including assessments for accessibility and compatibility.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Production Setup & Testing + Revisions</h4>
<p class="text-gray-600">
Configuring the production environment and conducting comprehensive testing for performance and SEO.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Launching & Monitoring</h4>
<p class="text-gray-600">
Deploying the website to the live environment and closely monitoring its performance and user feedback.
</p>
</div>
<div class="process-step">
<h4 class="text-lg font-semibold mb-2">Extending</h4>
<p class="text-gray-600">
Continuously improving and extending the website's functionality based on user feedback and emerging technologies.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Plans Section -->
<section id="plans" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Our Plans</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Plan 1 -->
<div class="plan-card bg-white border border-gray-200 rounded-xl p-8">
<div class="text-center mb-6">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-paint-brush text-blue-600 text-2xl"></i>
</div>
<small class="text-gray-500">Web Design</small>
<h3 class="text-2xl font-bold">Partnership</h3>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1× Project manager</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1× Web designer</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>One request at a time</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Pause or cancel anytime</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Frequent updates</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Async communication</span>
</li>
</ul>
<div class="text-center">
<div class="text-sm text-gray-500 mb-2">2 partnerships left</div>
<div class="text-3xl font-bold mb-4">$2,990/m</div>
<div class="text-sm text-gray-500 mb-6">Excl. VAT 21%</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white font-semibold py-3 px-6 rounded-lg transition">
Get Started
</button>
</div>
</div>
<!-- Plan 2 -->
<div class="plan-card bg-white border border-gray-200 rounded-xl p-8">
<div class="text-center mb-6">
<div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-code text-purple-600 text-2xl"></i>
</div>
<small class="text-gray-500">Web Development</small>
<h3 class="text-2xl font-bold">Partnership</h3>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1× Project manager</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1× WordPress developer</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>One request at a time</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Pause or cancel anytime</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Frequent updates</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Async communication</span>
</li>
</ul>
<div class="text-center">
<div class="text-sm text-gray-500 mb-2">1 partnership left</div>
<div class="text-3xl font-bold mb-4">$3,990/m</div>
<div class="text-sm text-gray-500 mb-6">Excl. VAT 21%</div>
<button class="w-full bg-purple-600 hover:bg-purple-700 text-white font-semibold py-3 px-6 rounded-lg transition">
Get Started
</button>
</div>
</div>
<!-- Plan 3 -->
<div class="plan-card bg-white border border-gray-200 rounded-xl p-8">
<div class="text-center mb-6">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-paint-brush text-indigo-600 text-xl mr-1"></i>
<i class="fas fa-code text-indigo-600 text-xl"></i>
</div>
<small class="text-gray-500">Web Design & Development</small>
<h3 class="text-2xl font-bold">Partnership</h3>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1× Project manager</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1× Web designer</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1× WordPress developer</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>One request at a time</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Pause or cancel anytime</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Frequent updates</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Async communication</span>
</li>
</ul>
<div class="text-center">
<div class="text-sm text-gray-500 mb-2">1 partnership left</div>
<div class="text-3xl font-bold mb-4">$5,990/m</div>
<div class="text-sm text-gray-500 mb-6">Excl. VAT 21%</div>
<button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-semibold py-3 px-6 rounded-lg transition">
Get Started
</button>
</div>
</div>
</div>
<div class="mt-12 text-center">
<h3 class="text-2xl font-semibold mb-6">Or choose one of our Sprints for one-off projects</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Sprint 1 -->
<div class="plan-card bg-white border border-gray-200 rounded-xl p-6">
<div class="text-center mb-4">
<div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-3">
<i class="fas fa-paint-brush text-blue-600 text-xl"></i>
</div>
<small class="text-gray-500">Web Design</small>
<h3 class="text-xl font-bold">Sprint</h3>
</div>
<ul class="space-y-2 mb-6 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Figma prototype up to 7 pages</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>One request—one fee</span>
</li>
</ul>
<div class="text-center">
<div class="text-sm text-gray-500 mb-2">Available</div>
<div class="text-2xl font-bold mb-4">$3,990</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white font-semibold py-2 px-4 rounded-lg text-sm transition">
Learn More
</button>
</div>
</div>
<!-- Sprint 2 -->
<div class="plan-card bg-white border border-gray-200 rounded-xl p-6">
<div class="text-center mb-4">
<div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-3">
<i class="fas fa-code text-purple-600 text-xl"></i>
</div>
<small class="text-gray-500">Web Development</small>
<h3 class="text-xl font-bold">Sprint</h3>
</div>
<ul class="space-y-2 mb-6 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Performant WordPress website</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>One request—one fee</span>
</li>
</ul>
<div class="text-center">
<div class="text-sm text-gray-500 mb-2">Last spot</div>
<div class="text-2xl font-bold mb-4">$4,990</div>
<button class="w-full bg-purple-600 hover:bg-purple-700 text-white font-semibold py-2 px-4 rounded-lg text-sm transition">
Learn More
</button>
</div>
</div>
<!-- Sprint 3 -->
<div class="plan-card bg-white border border-gray-200 rounded-xl p-6">
<div class="text-center mb-4">
<div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-3">
<i class="fas fa-paint-brush text-indigo-600 text-sm mr-1"></i>
<i class="fas fa-code text-indigo-600 text-sm"></i>
</div>
<small class="text-gray-500">Web Design & Development</small>
<h3 class="text-xl font-bold">Sprint</h3>
</div>
<ul class="space-y-2 mb-6 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Figma prototype up to 7 pages</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Performant WordPress website</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>One request—one fee</span>
</li>
</ul>
<div class="text-center">
<div class="text-sm text-gray-500 mb-2">Last spot</div>
<div class="text-2xl font-bold mb-4">$7,990</div>
<button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-semibold py-2 px-4 rounded-lg text-sm transition">
Learn More
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">What Our Clients Say</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="testimonial-card p-8 rounded-xl">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg"
alt="John Doe"
class="w-12 h-12 rounded-full object-cover mr-4 border-2 border-blue-500">
<div>
<div class="font-semibold">John Doe</div>
<div class="text-sm text-gray-500">CEO, Company A</div>
</div>
</div>
<p class="text-gray-700 italic">
"Great work, the website is highly customizable and flexible. The support is fast and helpful. Perfect."
</p>
</div>
<div class="testimonial-card p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center text-purple-600 font-bold mr-4">AS</div>
<div>
<div class="font-semibold">Alice Smith</div>
<div class="text-sm text-gray-500">Marketing Director, Company B</div>
</div>
</div>
<p class="text-gray-700 italic">
"I only have one word ... awesome!. They went above and beyond to help me out. Best support I have ever received."
</p>
</div>
<div class="testimonial-card p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 font-bold mr-4">RJ</div>
<div>
<div class="font-semibold">Robert Johnson</div>
<div class="text-sm text-gray-500">CTO, Company C</div>
</div>
</div>
<p class="text-gray-700 italic">
"Pavel was born with a computer in his hand. If someone tells you something is impossible, Pavel will prove that nothing is impossible. He's a superhero!"
</p>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Frequently Asked Questions</h2>
<div class="max-w-3xl mx-auto">
<!-- FAQ Item 1 -->
<div class="mb-8">
<h3 class="text-xl font-semibold mb-3 flex items-center">
<i class="fas fa-question-circle text-blue-600 mr-3"></i> Why should I choose WDSGN.Agency?
</h3>
<div class="pl-10">
<p class="text-gray-600 mb-4">
Are you looking for a partner who will offer you <strong>high-quality web design & development services</strong> along with experience, reliability, and flexibility? <strong>WDSGN.Agency</strong> is the right choice for you!
</p>
<p class="text-gray-600">
You can rely on our ability to meet deadlines and deliver results that exceed your expectations. The quality of our design, code, support, and every detail of our process comes first for us.
</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="mb-8">
<h3 class="text-xl font-semibold mb-3 flex items-center">
<i class="fas fa-user text-blue-600 mr-3"></i> Who is behind WDSGN.Agency?
</h3>
<div class="pl-10">
<div class="flex flex-col md:flex-row items-start mb-4">
<img src="https://cdn.wdsgn.agency/wp-content/uploads/2024/06/wdsgn-pavel-richter-lng-360.jpg"
alt="Pavel @ WDSGN.Agency"
class="w-24 h-24 rounded-full object-cover mb-4 md:mb-0 md:mr-6">
<div>
<p class="text-gray-600">
Welcome to WDSGN.agency. I'm Pavel Richter, a Web Designer, Front-end/WordPress Developer, and Accessibility Consultant with over 25 years of experience in the web industry. With my experienced team, we craft successful websites for large and small companies worldwide.
</p>
</div>
</div>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="mb-8">
<h3 class="text-xl font-semibold mb-3 flex items-center">
<i class="fas fa-cog text-blue-600 mr-3"></i> Where can I manage my partnership?
</h3>
<div class="pl-10">
<p class="text-gray-600">
Simply, in your account. Just <a href="#" class="text-blue-600 hover:underline">sign up</a> and see how simple it is.
</p>
<p class="text-gray-600 mt-2">
You can choose and manage your preferred collaboration method, whether it's a long-term partnership or a one-time project in your account. Of course, you can pause our partnership at any time and return to it later when you need it.
</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="mb-8">
<h3 class="text-xl font-semibold mb-3 flex items-center">
<i class="fas fa-project-diagram text-blue-600 mr-3"></i> What if I only need a one-off project?
</h3>
<div class="pl-10">
<p class="text-gray-600">
Sure, we are also happy to create a one-off project for you. Choose from our range of <a href="#plans" class="text-blue-600 hover:underline">predefined sprints</a> prepared for these purposes.
</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="mb-8">
<h3 class="text-xl font-semibold mb-3 flex items-center">
<i class="fas fa-clock text-blue-600 mr-3"></i> When will my project be completed?
</h3>
<div class="pl-10">
<p class="text-gray-600">
Each project is unique, and the time for its successful completion may vary. In general, you can expect:
</p>
<ul class="list-disc pl-5 mt-2 text-gray-600 space-y-1">
<li><strong>Web Design</strong> - 4-14 days (depending on the scope)</li>
<li><strong>Web Development</strong> - 2-3 weeks (depending on the scope)</li>
<li><strong>Web Design & Development</strong> - 4+ weeks (depending on the scope)</li>
</ul>
</div>
</div>
<!-- FAQ Item 6 -->
<div class="mb-8">
<h3 class="text-xl font-semibold mb-3 flex items-center">
<i class="fas fa-universal-access text-blue-600 mr-3"></i> What level of accessibility can I expect?
</h3>
<div class="pl-10">
<p class="text-gray-600">
We prioritize accessibility in every stage of our work. <strong>Our standard compliance level is WCAG 2.1 AA</strong>, ensuring that websites are usable for people with a wide range of disabilities.
</p>
<p class="text-gray-600 mt-2">
Moreover, we are fully aligned with the <strong>European Accessibility Act (EAA)</strong>, which is scheduled to come into effect in <strong>2025</strong>.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-blue-600 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Start Your Project?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">
Whether you need a complete website redesign, development, or ongoing support, we're here to help.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#plans" class="bg-white hover:bg-gray-100 text-blue-600 font-semibold py-3 px-8 rounded-lg transition duration-300">
View Our Plans
</a>
<a href="#" class="bg-transparent hover:bg-blue-700 text-white font-semibold py-3 px-8 rounded-lg border border-white transition duration-300">
Contact Us
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">WDSGN.Agency</h3>
<p class="text-gray-400">
Web Design & Development Agency crafting exceptional digital experiences with pixel-perfect design and clean code.
</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#work" class="text-gray-400 hover:text-white transition">Our Work</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white transition">Services</a></li>
<li><a href="#process" class="text-gray-400 hover:text-white transition">Process</a></li>
<li><a href="#plans" class="text-gray-400 hover:text-white transition">Plans</a></li>
<li><a href="#faq" class="text-gray-400 hover:text-white transition">FAQ</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Web Design</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Web Development</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">WordPress</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Accessibility</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">SEO</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Contact</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-envelope mr-2 text-gray-400"></i>
<a href="mailto:hello@wdsgn.agency" class="text-gray-400 hover:text-white transition">hello@wdsgn.agency</a>
</li>
<li class="flex items-center">
<i class="fas fa-phone mr-2 text-gray-400"></i>
<span class="text-gray-400">+420 123 456 789</span>
</li>
</ul>
<div class="mt-4 flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-dribbble text-xl"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>© 2024 WDSGN.Agency. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Back to Top -->
<a href="#" class="fixed bottom-6 right-6 bg-blue-600 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-lg hover:bg-blue-700 transition
animate-float">
<i class="fas fa-arrow-up"></i>
</a>
<script>
// Initialize GSAP animations
gsap.registerPlugin(ScrollTrigger);
// Animate elements on scroll
gsap.utils.toArray('[data-aos]').forEach(element => {
gsap.from(element, {
scrollTrigger: {
trigger: element,
start: "top 80%",
toggleActions: "play none none none"
},
opacity: 0,
y: 50,
duration: 0.8,
ease: "power2.out"
});
});
// Parallax effect for hero
gsap.to(".hero-bg", {
scrollTrigger: {
scrub: true
},
y: 100,
ease: "none"
});
// Simple JavaScript for mobile menu toggle (can be expanded as needed)
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.querySelector('.md\\:hidden');
const navMenu = document.querySelector('nav');
mobileMenuButton.addEventListener('click', function() {
navMenu.classList.toggle('hidden');
navMenu.classList.toggle('flex');
navMenu.classList.toggle('flex-col');
navMenu.classList.toggle('absolute');
navMenu.classList.toggle('top-16');
navMenu.classList.toggle('left-0');
navMenu.classList.toggle('right-0');
navMenu.classList.toggle('bg-white');
navMenu.classList.toggle('p-4');
navMenu.classList.toggle('shadow-md');
navMenu.classList.toggle('space-y-4');
navMenu.classList.toggle('space-x-0');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!navMenu.classList.contains('hidden')) {
mobileMenuButton.click();
}
}
});
});
});
</script>
</body>
</html> |