// =============================== // UNI-ENROL STYLE THEME SETUP // =============================== function ue_theme_setup() { // Enable features add_theme_support('title-tag'); add_theme_support('post-thumbnails'); add_theme_support('custom-logo'); add_theme_support('html5', array('search-form', 'comment-form', 'gallery')); // Register menu (top navigation like UniEnrol) register_nav_menus(array( 'primary-menu' => __('Primary Menu', 'ue-theme'), 'footer-menu' => __('Footer Menu', 'ue-theme') )); } add_action('after_setup_theme', 'ue_theme_setup'); // =============================== // LOAD CSS (YOUR DESIGN SYSTEM) // =============================== function ue_enqueue_assets() { // Main style (IMPORTANT) wp_enqueue_style( 'ue-style', get_stylesheet_uri(), array(), '1.0' ); // Google Font (modern UniEnrol style) wp_enqueue_style( 'ue-fonts', 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap', array(), null ); } add_action('wp_enqueue_scripts', 'ue_enqueue_assets'); // =============================== // ADD MENU CLASS SUPPORT (for hover dropdown) // =============================== function ue_menu_classes($classes, $item, $args) { if ($args->theme_location === 'primary-menu') { $classes[] = 'ue-menu-item'; } return $classes; } add_filter('nav_menu_css_class', 'ue_menu_classes', 10, 3); // =============================== // ENABLE GUTENBERG FULL WIDTH // =============================== function ue_gutenberg_setup() { add_theme_support('align-wide'); } add_action('after_setup_theme', 'ue_gutenberg_setup'); Home - Study SupportX
A laptop displaying a website design with the phrase 'Build your dream website.' next to a minimalistic building image. The scene also includes a modern mug and a smartphone placed on a wooden desk.
A laptop computer with a website displayed on the screen featuring the text 'Exceptional Web Application design & development'. The laptop is on a dark surface, and the website has a clean and modern design with a light background and colorful text elements.
A laptop displaying a wireframe design for a website. The screen shows multiple pages with sections labeled for a landing page, product details, and about information. The background contains a blurred backpack.
A web browser window displaying a website homepage with text promoting easy marketplace creation using Airtable without coding. The design includes a dark background, bright accent colors, and a gradient border. There is a navigation menu with options like Product, Use Cases, Explore, and others. A call-to-action button labeled 'Start for free' is featured prominently.