{"id":207,"date":"2025-11-09T13:17:11","date_gmt":"2025-11-09T13:17:11","guid":{"rendered":"https:\/\/learnbright.co.uk\/wordpress\/?page_id=207"},"modified":"2025-11-10T13:22:47","modified_gmt":"2025-11-10T13:22:47","slug":"wp-home","status":"publish","type":"page","link":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-home\/","title":{"rendered":"WP Home"},"content":{"rendered":"<section class=\"bde-section-207-102 bde-section\">\n              \n  \n  \n\t\n\n\n\n<div class=\"section-container\"><div class=\"bde-div-207-125 bde-div\">\n  \n  \n\t\n\n\n\n<h1 class=\"bde-heading-207-103 bde-heading\">\nWordPress Development & Marketing Solutions\n<\/h1>\n<\/div><div class=\"bde-div-207-104 bde-div\">\n  \n  \n\t\n\n\n\n<div class=\"bde-text-207-105 bde-text\">\nProfessional website design, development, and digital marketing strategies for individuals, academics, and corporations.\n<\/div>\n<\/div><\/div>\n<\/section><section class=\"bde-section-207-100 bde-section\">\n  \n  \n\t\n\n\n\n<div class=\"section-container\"><div class=\"bde-code-block-207-101 bde-code-block\">\n\n  <!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>WordPress Development & Marketing | Professional Websites for Individuals & Organizations<\/title>\n    <style>\n        :root {\n            --primary: #1E3A8A;\n            --secondary: #14B8A6;\n            --accent: #FACC15;\n            --light: #f8fafc;\n            --dark: #1e293b;\n        }\n        \n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n        \n        body {\n            color: var(--dark);\n            line-height: 1.6;\n        }\n        \n        .container {\n            width: 100%;\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0 20px;\n        }\n        \n        \/* Header Styles *\/\n        header {\n            background-color: white;\n            box-shadow: 0 2px 10px rgba(0,0,0,0.1);\n            position: sticky;\n            top: 0;\n            z-index: 100;\n        }\n        \n        .header-container {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            padding: 15px 0;\n        }\n        \n        .logo {\n            font-size: 1.8rem;\n            font-weight: 700;\n            color: var(--primary);\n        }\n        \n        .logo span {\n            color: var(--secondary);\n        }\n        \n        nav ul {\n            display: flex;\n            list-style: none;\n        }\n        \n        nav li {\n            margin-left: 25px;\n        }\n        \n        nav a {\n            text-decoration: none;\n            color: var(--dark);\n            font-weight: 500;\n            transition: color 0.3s;\n        }\n        \n        nav a:hover {\n            color: var(--primary);\n        }\n        \n        .cta-button {\n            background-color: var(--primary);\n            color: white;\n            padding: 10px 20px;\n            border-radius: 5px;\n            font-weight: 600;\n            transition: background-color 0.3s;\n        }\n        \n        .cta-button:hover {\n            background-color: var(--secondary);\n        }\n        \n        \/* Hero Section *\/\n        .hero {\n            background: linear-gradient(to right, #1E3A8A, #14B8A6);\n            color: white;\n            padding: 100px 0;\n            text-align: center;\n        }\n        \n        .hero-content {\n            max-width: 800px;\n            margin: 0 auto;\n        }\n        \n        .hero h1 {\n            font-size: 3rem;\n            margin-bottom: 20px;\n            line-height: 1.2;\n        }\n        \n        .hero p {\n            font-size: 1.3rem;\n            margin: 0 auto 30px;\n            max-width: 700px;\n        }\n        \n        .btn {\n            padding: 12px 25px;\n            border-radius: 5px;\n            font-weight: 600;\n            text-decoration: none;\n            transition: all 0.3s;\n            display: inline-block;\n        }\n        \n        .btn-primary {\n            background-color: white;\n            color: var(--primary);\n        }\n        \n        .btn-secondary {\n            background-color: transparent;\n            color: white;\n            border: 2px solid white;\n        }\n        \n        .btn:hover {\n            transform: translateY(-3px);\n            box-shadow: 0 5px 15px rgba(0,0,0,0.1);\n        }\n        \n        \/* Services Section *\/\n        .services {\n            padding: 80px 0;\n            background-color: var(--light);\n        }\n        \n        .section-title {\n            text-align: center;\n            margin-bottom: 50px;\n        }\n        \n        .section-title h2 {\n            font-size: 2.5rem;\n            color: var(--dark);\n            margin-bottom: 15px;\n        }\n        \n        .section-title p {\n            color: #64748b;\n            max-width: 600px;\n            margin: 0 auto;\n            font-size: 1.1rem;\n        }\n        \n        .services-grid {\n            display: flex;\n            justify-content: center;\n            flex-wrap: wrap;\n            gap: 30px;\n        }\n        \n        .service-card {\n            background-color: white;\n            border-radius: 10px;\n            padding: 40px 30px;\n            box-shadow: 0 5px 15px rgba(0,0,0,0.05);\n            text-align: center;\n            flex: 1;\n            min-width: 300px;\n            max-width: 350px;\n            transition: transform 0.3s;\n            border-top: 4px solid var(--primary);\n        }\n        \n        .service-card:hover {\n            transform: translateY(-10px);\n        }\n        \n        .service-icon {\n            font-size: 3rem;\n            margin-bottom: 20px;\n            color: var(--primary);\n        }\n        \n        .service-card h3 {\n            font-size: 1.5rem;\n            margin-bottom: 15px;\n            color: var(--dark);\n        }\n        \n        \/* WordPress Features Section *\/\n        .wordpress-features {\n            padding: 80px 0;\n            background-color: white;\n        }\n        \n        .features-container {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 40px;\n            align-items: center;\n        }\n        \n        .features-content {\n            flex: 1;\n            min-width: 300px;\n        }\n        \n        .features-image {\n            flex: 1;\n            min-width: 300px;\n            background: linear-gradient(135deg, #1E3A8A, #14B8A6);\n            border-radius: 10px;\n            height: 400px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            color: white;\n            font-size: 1.5rem;\n            font-weight: 600;\n            text-align: center;\n            padding: 20px;\n        }\n        \n        .features-content h3 {\n            font-size: 1.8rem;\n            margin-bottom: 20px;\n            color: var(--dark);\n        }\n        \n        .features-content p {\n            margin-bottom: 20px;\n            color: #64748b;\n        }\n        \n        .features-list {\n            list-style-type: none;\n        }\n        \n        .features-list li {\n            padding: 10px 0;\n            border-bottom: 1px solid #e2e8f0;\n            position: relative;\n            padding-left: 30px;\n        }\n        \n        .features-list li:before {\n            content: \"\u2713\";\n            position: absolute;\n            left: 0;\n            color: var(--secondary);\n            font-weight: bold;\n            font-size: 1.2rem;\n        }\n        \n        \/* Marketing Services Section *\/\n        .marketing-services {\n            padding: 80px 0;\n            background-color: var(--light);\n        }\n        \n        .marketing-container {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 30px;\n        }\n        \n        .marketing-card {\n            background-color: white;\n            border-radius: 10px;\n            padding: 40px 30px;\n            box-shadow: 0 5px 15px rgba(0,0,0,0.05);\n            flex: 1;\n            min-width: 300px;\n            transition: transform 0.3s;\n            border-left: 4px solid var(--secondary);\n        }\n        \n        .marketing-card:hover {\n            transform: translateY(-5px);\n        }\n        \n        .marketing-icon {\n            font-size: 2.5rem;\n            margin-bottom: 20px;\n            color: var(--primary);\n        }\n        \n        .marketing-card h3 {\n            font-size: 1.5rem;\n            margin-bottom: 15px;\n            color: var(--dark);\n        }\n        \n        \/* Solutions Section *\/\n        .solutions {\n            padding: 80px 0;\n            background-color: white;\n        }\n        \n        .solutions-container {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 40px;\n        }\n        \n        .solutions-content {\n            flex: 1;\n            min-width: 300px;\n        }\n        \n        .solutions-image {\n            flex: 1;\n            min-width: 300px;\n            background: linear-gradient(135deg, #FACC15, #14B8A6);\n            border-radius: 10px;\n            height: 400px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            color: var(--dark);\n            font-size: 1.5rem;\n            font-weight: 600;\n            text-align: center;\n            padding: 20px;\n        }\n        \n        .solutions-content h3 {\n            font-size: 1.8rem;\n            margin-bottom: 20px;\n            color: var(--dark);\n        }\n        \n        .solutions-list {\n            list-style-type: none;\n        }\n        \n        .solutions-list li {\n            padding: 12px 0;\n            border-bottom: 1px solid #e2e8f0;\n            position: relative;\n            padding-left: 35px;\n        }\n        \n        .solutions-list li:before {\n            content: \"\ud83c\udfaf\";\n            position: absolute;\n            left: 0;\n            font-size: 1.2rem;\n        }\n        \n        \/* Process Section *\/\n        .process {\n            padding: 80px 0;\n            background-color: var(--light);\n        }\n        \n        .process-steps {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 20px;\n            justify-content: center;\n        }\n        \n        .process-step {\n            background-color: white;\n            border-radius: 10px;\n            padding: 30px;\n            box-shadow: 0 5px 15px rgba(0,0,0,0.05);\n            text-align: center;\n            flex: 1;\n            min-width: 200px;\n            max-width: 250px;\n            position: relative;\n        }\n        \n        .step-number {\n            width: 40px;\n            height: 40px;\n            background-color: var(--primary);\n            color: white;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            margin: 0 auto 15px;\n            font-weight: bold;\n        }\n        \n        .process-step h4 {\n            font-size: 1.2rem;\n            margin-bottom: 10px;\n            color: var(--dark);\n        }\n        \n        \/* CTA Section *\/\n        .cta-section {\n            background: linear-gradient(to right, #14B8A6, #FACC15);\n            color: var(--dark);\n            padding: 80px 0;\n            text-align: center;\n        }\n        \n        .cta-content {\n            max-width: 800px;\n            margin: 0 auto;\n        }\n        \n        .cta-section h2 {\n            font-size: 2.5rem;\n            margin-bottom: 20px;\n        }\n        \n        .cta-section p {\n            margin: 0 auto 30px;\n            font-size: 1.2rem;\n            max-width: 600px;\n        }\n        \n        \/* Footer *\/\n        footer {\n            background-color: #1479b8;\n            color: white;\n            padding: 50px 0 20px;\n        }\n        \n        .footer-content {\n            display: flex;\n            flex-wrap: wrap;\n            justify-content: space-between;\n            margin-bottom: 40px;\n        }\n        \n        .footer-column {\n            flex: 1;\n            min-width: 200px;\n            margin-bottom: 30px;\n        }\n        \n        .footer-column h3 {\n            margin-bottom: 20px;\n            font-size: 1.2rem;\n        }\n        \n        .footer-column ul {\n            list-style: none;\n        }\n        \n        .footer-column li {\n            margin-bottom: 10px;\n        }\n        \n        .footer-column a {\n            color: #cbd5e1;\n            text-decoration: none;\n            transition: color 0.3s;\n        }\n        \n        .footer-column a:hover {\n            color: white;\n        }\n        \n        .copyright {\n            text-align: center;\n            padding-top: 20px;\n            border-top: 1px solid #334155;\n            color: #94a3b8;\n            font-size: 0.9rem;\n        }\n        \n        \/* Responsive Design *\/\n        @media (max-width: 768px) {\n            .header-container {\n                flex-direction: column;\n                text-align: center;\n            }\n            \n            nav ul {\n                margin-top: 15px;\n                flex-wrap: wrap;\n                justify-content: center;\n            }\n            \n            nav li {\n                margin: 5px 10px;\n            }\n            \n            .hero h1 {\n                font-size: 2.2rem;\n            }\n            \n            .features-container, .solutions-container {\n                flex-direction: column;\n            }\n            \n            .features-image, .solutions-image {\n                width: 100%;\n                order: -1;\n            }\n            \n            .services-grid, .marketing-container, .process-steps {\n                flex-direction: column;\n                align-items: center;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <!-- Header -->\n   \n\n    <!-- Hero Section -->\n   \n\n    <!-- Services Section -->\n    <section class=\"services\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>WordPress & Marketing Services<\/h2>\n                <p>Comprehensive digital solutions to establish and grow your online presence<\/p>\n            <\/div>\n            \n            <div class=\"services-grid\">\n                <div class=\"service-card\">\n                    <div class=\"service-icon\">\ud83c\udf10<\/div>\n                    <h3>Website Development<\/h3>\n                    <p>Custom WordPress websites designed for performance, usability, and conversion with responsive design and SEO optimization.<\/p>\n                <\/div>\n                \n                <div class=\"service-card\">\n                    <div class=\"service-icon\">\ud83d\ude80<\/div>\n                    <h3>Digital Marketing<\/h3>\n                    <p>Comprehensive marketing strategies including SEO, content marketing, social media, and conversion rate optimization.<\/p>\n                <\/div>\n                \n                <div class=\"service-card\">\n                    <div class=\"service-icon\">\ud83d\udee0\ufe0f<\/div>\n                    <h3>Maintenance & Support<\/h3>\n                    <p>Ongoing website maintenance, security updates, performance optimization, and technical support services.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- WordPress Features Section -->\n    <section class=\"wordpress-features\">\n        <div class=\"container\">\n            <div class=\"features-container\">\n                <div class=\"features-content\">\n                    <h3>Why Choose WordPress?<\/h3>\n                    <p>WordPress powers over 40% of all websites for good reason - it offers unparalleled flexibility, security, and scalability for businesses of all sizes.<\/p>\n                    \n                    <ul class=\"features-list\">\n                        <li>Fully responsive design that works on all devices<\/li>\n                        <li>SEO-optimized structure for better search rankings<\/li>\n                        <li>Custom functionality with tailored plugins and themes<\/li>\n                        <li>Easy-to-use content management system<\/li>\n                        <li>E-commerce integration for online stores<\/li>\n                        <li>Secure hosting and regular security updates<\/li>\n                        <li>Fast loading times and performance optimization<\/li>\n                        <li>Scalable architecture that grows with your business<\/li>\n                    <\/ul>\n                <\/div>\n                \n                <div class=\"features-image\">\n                    Custom WordPress Development<br>Responsive & SEO-Optimized\n                <\/div>\n            <\/div>\n               \n        <\/div>\n                                         <br><a href=\"https:\/\/learnbright.co.uk\/wordpress\/index.php\/contact\" class=\"btn btn-primary\">Contact us for a free consultation<\/a>\n    <\/section>\n\n    <!-- Marketing Services Section -->\n    <section class=\"marketing-services\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>Comprehensive Marketing Solutions<\/h2>\n                <p>We help you reach your target audience and achieve your business goals<\/p>\n            <\/div>\n            \n            <div class=\"marketing-container\">\n                <div class=\"marketing-card\">\n                    <div class=\"marketing-icon\">\ud83d\udd0d<\/div>\n                    <h3>Search Engine Optimization<\/h3>\n                    <p>Improve your website's visibility in search results with our comprehensive SEO strategies.<\/p>\n                    <ul class=\"features-list\">\n                        <li>Keyword research and strategy<\/li>\n                        <li>On-page optimization<\/li>\n                        <li>Technical SEO audits<\/li>\n                        <li>Local SEO for geographic targeting<\/li>\n                    <\/ul>\n                <\/div>\n                \n                <div class=\"marketing-card\">\n                    <div class=\"marketing-icon\">\ud83d\udcf1<\/div>\n                    <h3>Social Media Marketing<\/h3>\n                    <p>Engage your audience and build brand awareness across social platforms.<\/p>\n                    <ul class=\"features-list\">\n                        <li>Content strategy development<\/li>\n                        <li>Community management<\/li>\n                        <li>Paid social advertising<\/li>\n                        <li>Performance analytics<\/li>\n                    <\/ul>\n                <\/div>\n                \n                <div class=\"marketing-card\">\n                    <div class=\"marketing-icon\">\u270d\ufe0f<\/div>\n                    <h3>Content Marketing<\/h3>\n                    <p>Create valuable content that attracts, engages, and converts your target audience.<\/p>\n                    <ul class=\"features-list\">\n                        <li>Content strategy planning<\/li>\n                        <li>Blog post creation<\/li>\n                        <li>Email marketing campaigns<\/li>\n                        <li>Content performance analysis<\/li>\n                    <\/ul>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Solutions Section -->\n    <section class=\"solutions\">\n        <div class=\"container\">\n            <div class=\"solutions-container\">\n                <div class=\"solutions-image\">\n                    Targeted Solutions<br>For Your Specific Needs\n                <\/div>\n                \n                <div class=\"solutions-content\">\n                    <h3>Solutions for Every Client<\/h3>\n                    <p>We create tailored digital solutions based on your specific needs and objectives.<\/p>\n                    \n                    <ul class=\"solutions-list\">\n                        <li><strong>For Individuals & Academics:<\/strong> Professional portfolios, academic websites, and personal branding<\/li>\n                        <li><strong>For Small Businesses:<\/strong> E-commerce solutions, service websites, and local marketing<\/li>\n                        <li><strong>For Educational Institutions:<\/strong> School websites, course portals, and student engagement platforms<\/li>\n                        <li><strong>For Corporations:<\/strong> Enterprise websites, intranets, and digital transformation solutions<\/li>\n                        <li><strong>For Non-Profit Organizations:<\/strong> Donation platforms, awareness campaigns, and community engagement<\/li>\n                    <\/ul>\n                <\/div>\n            <\/div>\n             <br><a href=\"https:\/\/learnbright.co.uk\/wordpress\/index.php\/contact\" class=\"btn btn-primary\">Contact us for a free consultation<\/a>\n        <\/div>\n    <\/section>\n\n    <!-- Process Section -->\n    <section class=\"process\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>Our Development Process<\/h2>\n                <p>We follow a structured approach to deliver exceptional results<\/p>\n            <\/div>\n            \n            <div class=\"process-steps\">\n                <div class=\"process-step\">\n                    <div class=\"step-number\">1<\/div>\n                    <h4>Discovery & Strategy<\/h4>\n                    <p>We analyze your needs and create a comprehensive project plan<\/p>\n                <\/div>\n                \n                <div class=\"process-step\">\n                    <div class=\"step-number\">2<\/div>\n                    <h4>Design & Prototyping<\/h4>\n                    <p>We create visual designs and interactive prototypes<\/p>\n                <\/div>\n                \n                <div class=\"process-step\">\n                    <div class=\"step-number\">3<\/div>\n                    <h4>Development<\/h4>\n                    <p>We build your website with all required functionality<\/p>\n                <\/div>\n                \n                <div class=\"process-step\">\n                    <div class=\"step-number\">4<\/div>\n                    <h4>Testing & Optimization<\/h4>\n                    <p>We test thoroughly and optimize for performance<\/p>\n                <\/div>\n                \n                <div class=\"process-step\">\n                    <div class=\"step-number\">5<\/div>\n                    <h4>Launch & Marketing<\/h4>\n                    <p>We deploy your site and implement marketing strategies<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- CTA Section -->\n   \n\n    <!-- Footer -->\n   \n<\/body>\n<\/html>\n\n\n<\/div><\/div>\n<\/section><section class=\"bde-section-207-119 bde-section\">\n              \n  \n  \n\t\n\n\n\n<div class=\"section-container\"><h2 class=\"bde-heading-207-120 bde-heading\">\nReady to Elevate Your Digital Presence?\n<\/h2><div class=\"bde-div-207-121 bde-div\">\n  \n  \n\t\n\n\n\n<div class=\"bde-text-207-122 bde-text\">\nContact us for a free consultation and proposal for your WordPress and marketing needs.\n<\/div>\n<\/div><div class=\"bde-div-207-123 bde-div\">\n  \n  \n\t\n\n\n\n<div class=\"bde-code-block-207-124 bde-code-block\">\n\n  <a href=\"https:\/\/learnbright.co.uk\/wordpress\/index.php\/contact\" class=\"btn btn-primary\">Contact us<\/a>\n\n\n<\/div>\n<\/div><\/div>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>WordPress Development &#038; Marketing Solutions Professional website design, development, and digital marketing strategies for individuals, academics, and corporations. WordPress Development &#038; Marketing | Professional Websites for Individuals &#038; Organizations WordPress &#038; Marketing Services Comprehensive digital solutions to establish and grow your online presence \ud83c\udf10 Website Development Custom WordPress websites designed for performance, usability, and conversion [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_breakdance_hide_in_design_set":false,"_breakdance_tags":"","footnotes":""},"class_list":["post-207","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-json\/wp\/v2\/pages\/207","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-json\/wp\/v2\/comments?post=207"}],"version-history":[{"count":14,"href":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-json\/wp\/v2\/pages\/207\/revisions"}],"predecessor-version":[{"id":337,"href":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-json\/wp\/v2\/pages\/207\/revisions\/337"}],"wp:attachment":[{"href":"https:\/\/learnbright.co.uk\/wordpress\/index.php\/wp-json\/wp\/v2\/media?parent=207"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}